Linux上的Nginx上设置支持PHP的解析

当前的运行环境为,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;
}

  

上一篇:Python之读取列表元素个数、元素求和元素平均


下一篇:Oracle12C SGA PGA UGA