我有一个服务器(nginx / 1.6.0 PHP 5.5.14),这些设置可以正常工作。问题是当我使用location ^~ /sys/
当我尝试访问sys文件夹时,它会下载索引。如果我将location ^~ / sys /
移回正常工作状态。他的错误只发生在php文件中。 html文件正常工作。错误在哪里?
server {
server_name site.com;
root /home/www/site.com;
index index.php index.html index.htm;
location / {
index index.php index.html;
try_files $uri $uri/ /index.php;
}
location ~ [^/]\.php(/|$) {
fastcgi_pass unix:/data/php5514/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_read_timeout 300;
include fastcgi_params;
}
location ^~ /sys/ {
}
}
我正在使用脚本,需要在nginx中进行此设置,以保护文件夹免受未经授权的访问。
location ^~ /FOLDER/ {
if ($cookie_amember_nr !~* [a-zA-Z0-9]+) { #not authorized
rewrite ^(.*)$ http://EXAMPLE.COM/AMEMBER/protect/new-rewrite?f=FOLDERID&url=$request_uri?$args redirect;
}
set $file $document_root/AMEMBER/data/new-rewrite/$cookie_amember_nr-FOLDERID;
if (!-f $file) { #have not access
rewrite ^(.*)$ http://EXAMPLE.COM/AMEMBER/no-access/folder/id/FOLDERID?url=$request_uri?$args redirect;
}
#everything is ok
}
但location ^ ~
的这个问题不起作用。
答案 0 :(得分:0)
您应该更详细地解释您的实际期望。
假设你想在/ sys /上提供php内容,你还必须将fastcgi_pass块放在这个位置上下文中,如下所示:
location ^~ /sys/ {
fastcgi_pass unix:/data/php5514/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_read_timeout 300;
include fastcgi_params;
}
如果这就是你想要的,你可能想要使用upstream:
upstream php { server unix:/data/php5514/var/run/php5-fpm.sock; }
并将其引用为
location ^~ /sys/ {
fastcgi_pass http://php;
}
在服务于php的两个/所有位置块上。
请记住,确切位置匹配胜过不太精确/几乎匹配。也许您对/sys/something.php的GET请求不会被php-location块匹配,而是由/ sys-location块匹配。 无论如何,如果你没有像其他根一样放置东西,那么sys-location块的用途是什么?