我正在使用我的rails 3.0.3应用程序使用Nginx + Unicorn。
这是我的应用程序的nginx配置:
upstream unicorn {
server unix:/tmp/unicorn.myapp.sock fail_timeout=0;
}
server {
listen 80 default deferred;
root /home/deployer/apps/myapp/current/public;
try_files $uri/index.html $uri @unicorn;
location @unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unicorn;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 4G;
keepalive_timeout 10;
}
以下是应用public/images
的目录列表:
lrwxrwxrwx 1 deployer admin 56 2012-03-28 17:06 other -> /home/deployer/other_images/
-rw-rw-r-- 1 deployer admin 6646 2012-03-28 17:08 rails.png
正如您所看到的,other
是一个符号链接。这是/home/deployer/other_images/
-rw-r--r-- 1 deployer admin 2271 2012-02-03 17:24 1.jpg
在浏览器中,我可以提取http://<domain>/images/rails.png
但http://<domain>/images/other/1.jpg
正在返回public/404.html
页面(“您要查找的页面不存在”)。
我做错了什么?是其中一个文件/目录的权限问题?我的nginx配置设置不正确吗?
更新
当我将以下内容添加到应用程序的nginx配置(root
下方)并请求1.jpg
时,我收到403权限被拒绝:
location ^~ /images/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
答案 0 :(得分:0)
我修好了。 /home/deployer/other_images
目录没有读取权限。
答案 1 :(得分:0)
我看到您已解决此问题,但对于遇到此问题的其他人,如果在您的try_files
代码之后返回404始终是一种好习惯,那么
使用上面的示例
try_files $uri/index.html $uri @unicorn =404;