为什么nginx找不到我的资产?

时间:2012-12-19 13:28:17

标签: ruby-on-rails nginx unicorn assets

我在rails 3.2上,我的生产设置是使用nginx和独角兽。

我遇到了一些名为sidekiq的ruby gem使用的资产问题。但是,当我提出要求时,这些资产没有得到妥善处理。我的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

如果我进入服务器并写下:

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

你可以看到它确实在那里。那么为什么不服务呢?。

2 个答案:

答案 0 :(得分:9)

解决了它,这完全是由于我的production.rb中的设置错误导致默认行为失败,因此将资产置于/ public手动的黑客攻击不是无论如何都是必要的。

我有:

config.action_dispatch.x_sendfile_header = "X-Sendfile"

而不是nginx应该是:

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

感谢所有帮助: - )

答案 1 :(得分:1)

抱歉,Niels,我想我需要更多信息才能帮到你。您能否请启用日志记录,然后将记录的回复发布到您的问题中。

要启用日志记录,请在配置中包含以下行,然后重新加载配置,或重新启动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;

我会根据我们在日志中找到的内容修改我的答案。