我在使用nginx服务器上的子目录时遇到了一些问题。
我正在使用nginx将wordpress安装作为web根目录,并尝试在子目录中运行其他php应用程序。 Wordpress运行正常,但我不能为我的生活让应用程序在没有404,403或“未指定输入文件”的子目录中运行。各种配置错误。我确信有一些明显的东西,但我似乎无法弄明白!
以下是相关配置:
非常感谢任何帮助!
server {
listen myserver.edu:8081;
server_name myserver.edu:8081;
try_files $uri $uri/ /index.php;
location / {
root /path/to/nginx/html/wordpress;
index index.php;
}
location /stacks {
alias /another/path/to/usr/local/share/stacks/php;
index index.php;
}
location ~ \.php$ {
set $php_root /path/to/nginx/html/wordpress;
include fastcgi_params;
fastcgi_pass localhost:8082;
fastcgi_param SCRIPT_FILENAME $php_root$fastcgi_script_name;
}
location ~ \stacks.php$ {
set $php_root /another/path/to/usr/local/share/stacks/php;
include fastcgi_params;
fastcgi_pass localhost:8082;
fastcgi_param SCRIPT_FILENAME $php_root$fastcgi_script_name;
}
答案 0 :(得分:5)
我不知道如何使用你的别名并设置$ php_root。如果您从外部文件夹到wordpress-rootdirectory创建符号链接,我确实知道如何修复它。
因此,使用终端,您可以创建一个符号链接,以便您的stacks-subdirectory是一个实际的子目录:
ln -s /another/path/to/usr/local/share/stacks/php /path/to/nginx/html/wordpress/stacks
作为nginx-config我会用
server {
listen myserver.edu:8081;
server_name myserver.edu:8081;
root /path/to/nginx/html/wordpress;
index index.php;
location / {
try_files $uri $uri/ /index.php;
}
location /stacks {
try_files $uri $uri/ /stacks/index.php;
}
location ~ \.php$ {
fastcgi_pass localhost:8082;
include fastcgi_params;
}
}
答案 1 :(得分:1)
注释掉'try_files'。子目录开始工作吗?也许它是在考虑“位置”指令之前处理的。如果是这种情况,那么将'try_files'移动到'location /'的块中。
我认为无论如何这对'try_files'来说是一个更好的地方。在当前配置中,看起来对不存在的文件的请求都将被发送到Wordpress,即使它们位于“堆栈”目录中。