1
我正在使用Nginx + Unicorn和我的rails 3.0.3應用程序。請求圖像返回403/404
這裏是我的應用程序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配置沒有正確設置?
UPDATE
當我以下內容添加到應用程序的nginx的配置(以下root
),並請求1.jpg
,我拿回403權限被拒絕:
location ^~ /images/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}