当前的运行环境为,PHP7.2.2以 FastCGI 模式运行,默认端口为:9000,Nginx1.15.6
打开nginx配置文件
vi /usr/local/nginx/conf/nginx.conf
具体位置根据安装情况可能会有所差异
在 server{}
代码段里新增以下代码就可以支持 php
的访问了
location ~ \.php { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; }