我有一个在Nginx上运行的应用程序,其工作服务器块如下:
server {
listen 80;
server_name example.com;
root /home/deployer/apps/my_app/current/;
index index.php;
location / {
index index.php;
try_files $uri $uri/;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/home/deployer/apps/shared/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location /foo {
root /home/deployer/apps/modules/;
# tried this:
# alias /home/deployer/apps/modules/foo/;
# but php is not working with alias, only with root
}
}
当我访问/ foo时,Nginx在路径/ home / deployer / apps / modules / foo /中查找index.php文件并且它可以工作。
问题:
我使用capistrano设置部署脚本,该脚本部署到foo目录:
/home/deployer/apps/modules/foo/
Capistrano创造了一个当前的' “foo”中的目录目录包含从Github引入的应用程序文件,因此我需要将根路径更改为:
/home/deployer/apps/modules/foo/current/
但是Nginx将location指令附加到根指令的末尾....所以,当你访问/ foo时,Nginx试图查看:
/home/deployer/apps/modules/foo/current/foo/
使用alias应该忽略location指令中设置的/ foo,并从确切的别名路径(日志确认正在发生)中提供文件,但是当我使用alias指令时,php配置没有正确应用我得到了404返回。
如果我回到root指令并删除当前的'目录一共,它工作正常。我需要从“当前”文件中提供文件。目录与Capistrano部署工作顺利,但无法弄清楚如何使别名指令与php一起工作。
任何人有任何想法或建议,我错过了什么?
答案 0 :(得分:4)
感谢@ xavier-lucas关于无法将try_files与别名一起使用的建议。
要在php中使用别名,我必须从原始问题中显示的php位置块中删除try_files指令:
try_files $uri =404;
我实际上不得不在/ foo位置重新设置php位置块并删除上面的行。结果看起来像这样:
location /foo {
alias /home/deployer/apps/modules/foo/;
location ~ \.php$ {
# try_files $uri =404; -- removed this line
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/home/deployer/apps/shared/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
这允许直接从别名指令中列出的目录处理php文件。
答案 1 :(得分:1)
使用
location /foo/ {
alias /home/deployer/apps/modules/foo/current/;
}
而不是
location /foo {
alias /home/deployer/apps/modules/foo/;
}