nginx解析php

Posted xgmxm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx解析php相关的知识,希望对你有一定的参考价值。

server {    

    listen 80;    

    server_name localhost;    

    index index.html index.htm index.php;    

     root /opt/nginx/html;

    location /{        

         root /opt/nginx/html;    

   }

   location ~ .*\.(php|php5)?$ {      

        include fastcgi.conf;  

       #fastcgi.conf 有一行fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        

       #fastcgi_pass unix:/tmp/www.sock;        

       fastcgi_pass 127.0.0.1:12091;        

       fastcgi_index index.php;

    }

}

以上是关于nginx解析php的主要内容,如果未能解决你的问题,请参考以下文章

nginx解析漏洞复现

Nginx 解析PHP的原理 | CGIFastCGI及php-fpm的关系

Nginx解析PHP的原理 | CGIFastCGI及php-fpm的关系

nginx_parsing_vulnerability nignx解析漏洞复现

nginx 无法解析php

nginx1.6解析php出现问题