nginx+php配置

为了方便开发调试,一般都会在本地配置虚拟主机,我通常的开发环境是 node + nginx。但是之前的一个项目后端是 php,所以就有了 nginx + php 的组合。

配置如下:

1
2
3
4
5
6
7
8
9
10
server {
listen 8011;
server_name test.cn;
location ~ \.php?.*$ {
root /share/test;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}

[越努力,越幸运!]