2012-12-19 59 views
4

我在rails 3.2上,我的製作設置是使用nginx和獨角獸。爲什麼nginx無法找到我的資產?

我有一個紅寶石寶石叫做sidekiq使用的一些資產的問題。但是,當我要求他們時,這些資產沒有得到正確的服務。我的nginx配置如下所示:

upstream unicorn { 
    server unix:/tmp/unicorn.myapp.sock fail_timeout=0; 
} 

server { 
    listen 80 default deferred; 
    # server_name example.com; 
    root /home/deployer/apps/myapp/current/public; 

    if (-f $document_root/system/maintenance.html) { 
    return 503;my 
    } 
    error_page 503 @maintenance; 
    location @maintenance { 
    rewrite ^(.*)$ /system/maintenance.html last; 
    break; 
    } 

    location ~ ^/assets/ { 
    gzip_static on; 
    expires max; 
    add_header Cache-Control 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; 

    if (-f $document_root/system/maintenance.html) { 
    return 503; 
    } 
    error_page 503 @maintenance; 
    location @maintenance { 
    rewrite ^(.*)$ /system/maintenance.html last; 
    break; 
    } 
} 

在我的瀏覽器中,我可以看到它是
要求http://www.myapp.com/admin/sidekiq/stylesheets/application.css

如果我ssh到服務器,並寫上:

ls /home/deployer/apps/myapp/current/public/admin/sidekiq/stylesheets 
application.css bootstrap.css 

你可以看到,它實際上是在那裏。那麼爲什麼它不被服務?

+0

你想通過Nginx的送達文件,或獨角獸? –

+0

嗯,我認爲從nginx服務它是如何建議默認在這裏https://github.com/mperham/sidekiq/issues/260然而把它公開/管理/ sidekiq是另一種解決方案建議作爲黑客,當默認不起作用 –

+0

訪問''http:// www.myapp.com/admin/sidekiq/stylesheets/application.css''時,從瀏覽器得到的確切回覆是什麼? –

回答

9

解決了它,這一切都是由於rails中的production.rb中的錯誤設置導致默認行爲失敗,因此手動將資源置入/公開是不必要的。

我:

config.action_dispatch.x_sendfile_header = "X-Sendfile" 

這反而爲nginx的應該是:

config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' 

感謝所有幫助:-)

+0

您很可能希望nginx直接提供資產,而無需從Rails請求它們。 – Smar

+0

是的,除了通常我使用asset_sync從雲端服務我的資產的事實。但在這種情況下,它是一個後端管理工具,與其他一切相比,這種工具很少使用。而且由於它是從寶石中提取的資產,我不知道如何(如果可能的話)通過雲端服務來提供這些資源..? –

+0

不正常的耙子資產:預編譯也挑選那些? – Smar

1

對不起,尼爾斯,我想我需要更多的信息來幫助你。您能否啓用日誌記錄,然後將記錄的回覆發佈到您的問題中。

要啓用日誌記錄,請在配置文件中包含以下行,然後重新加載配置或重新啓動NginX。

log_format my_log_format 
     '$host $remote_addr - $remote_user [$time_local] $status ' 
     '"$request" $body_bytes_sent "$http_referer" ' 
     '"$http_user_agent" "$http_x_forwarded_for"'; 

    error_log /home/deployer/myapp_error.log; 
    access_log /home/deployer/myapp_access.log my_log_format; 

我會根據我們在日誌中找到的內容修改我的答案。

相關問題