直接贴代码,备份用

server
{
    listen 80;
    server_name abc.com;
    index index.html index.htm index.php;
    root /var/www;

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
    fastcgi_param  SCRIPT_FILENAME            
        $document_root$fastcgi_script_name;
    }

}
    

需要在每一个希望支持php的server块当众插入以上location代码。

版权声明:本文为netsa原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/netsa/p/8491507.html