程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> lnmp取消nginx目錄PHP執行權限

lnmp取消nginx目錄PHP執行權限

編輯:關於PHP編程

       首先要編輯nginx的虛擬主機配置,在fastcgi的location語句的前面按下面的內容添加:

      1、單個目錄去掉PHP執行權限

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

      deny all;

      }

      將attachments目錄的PHP執行權限去掉。

      2、多個目錄去掉PHP執行權限

      location ~ /(attachments|upload)/.*.(php|php5)?$ {

      deny all;

      }

      將attachments、upload這二個目錄的PHP執行權限去掉。

      附上一個完整的虛擬主機的例子供參考:

      server

      {

      listen 80;

      server_name www.45it.com;

      index index.html index.htm index.php;

      root /home/wwwroot/bbs.vpser.net;include discuz.conf;

      location ~ /(attachments|upload)/.*.(php|php5)?$ {

      deny all;

      }

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

      {

      fastcgi_pass unix:/tmp/php-cgi.sock;

      fastcgi_index index.php;

      include fcgi.conf;

      }

      access_log off;

      }

      添加完執行:/usr/local/nginx/sbin/nginx -t測試配置文件,執行:/usr/local/nginx/sbin/nginx -s reload 載入配置文件使其生效。

      注:注意順序,一定要放在 “location ~ .*.(php|php5)?$” 一行上面,不然不會生效。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved