nginx+php配置 发表于 2018-07-11 | 分类于 Other | 为了方便开发调试,一般都会在本地配置虚拟主机,我通常的开发环境是 node + nginx。但是之前的一个项目后端是 php,所以就有了 nginx + php 的组合。 配置如下: 12345678910server { 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; }} [越努力,越幸运!]