Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> 關於服務器 >> lnmp取消nginx目錄PHP執行權限

lnmp取消nginx目錄PHP執行權限

日期:2017/2/8 10:11:41      編輯:關於服務器

首先要編輯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)?$” 一行上面,不然不會生效。

Copyright © Windows教程網 All Rights Reserved