macos - 如何在Mac 使用nginx 创建多个项目

【字号: 日期:2022-07-27浏览:40作者:雯心

问题描述

类似于 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;includefastcgi_params;} # deny access to .htaccess files, if Apache’s document root # concurs with nginx’s one # #location ~ /.ht { # deny all; #}}更改了root 目录和加了个域名 我也在hosts上面加了 但是重启nginx 并不生效 求教。。

问题解答

回答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;includefastcgi_params;}

这里的 root 目录也得改。

相关文章: