對於nginx配置文件中的fastcgi_param相關參數的理解

今天在ubuntu中搭建LNMP的時候,遇到了一個問題 在瀏覽器中訪問.php文件的時候,nginx不能正常解析,頁面只是空白,後來百度了一下,發現了問題php

在nginx的配置文件nginx.conf中的server配置段:nginx

一開始以下:ubuntu

        location ~ \.php$ {
        #       include snippets/fastcgi-php.conf;
                include fastcgi_params;
        #       fastcgi_pass 127.0.0.1:9000;
                fastcgi_pass unix:/run/php/php7.0-fpm.sock;
                fastcgi_index index.php;
        }

後來修改成以下:瀏覽器

        location ~ \.php$ {
        #       include snippets/fastcgi-php.conf;
                include fastcgi_params;
        #       fastcgi_pass 127.0.0.1:9000;
                fastcgi_pass unix:/run/php/php7.0-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        }

惟一的區別是:加入了一行配置   fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;php7

這個配置的意思是 在瀏覽器中訪問的.php文件,實際讀取的是 $document_root(網站根目錄)下的.php文件 -- 也就是說當訪問127.0.0.1/index.php的時候,須要讀取網站根目錄下面的index.php文件,若是沒有配置這一配置項時,nginx不回去網站根目錄下訪問.php文件,因此返回空白測試

配置項目中:include fastcgi_params; fastcgi_params 文件中含有各個nginx常量的定義,默認狀況 SCRIPT_FILENAME = $fastcgi_script_name網站

注意:在測試中發現include fastcgi-php.conf 報錯,緣由尚未找到unix

相關文章
相關標籤/搜索