macos - How to use nginx to create multiple projects on Mac
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-05-16 17:08:37
0
1
683

Similar to multiple projects on apache
server {

    listen       8080;
    server_name  g.sym.com;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /Users/light/php;
        index  index.html index.htm index.php;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
        }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

更改了root 目录和加了个域名 我也在hosts上面加了 但是重启nginx 并不生效 求教。。
曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(1)
洪涛
location ~ \.php$ {
root           html;
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
include        fastcgi_params;
}
        
    

The root directory here also needs to be changed.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!