4

我在 Rails 3.2 上,我的生产设置使用 nginx 和 unicorn。

我对名为 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.

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

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

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

4

2 回答 2

9

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

我有:

config.action_dispatch.x_sendfile_header = "X-Sendfile"

而对于 nginx 应该是:

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

感谢所有帮助:-)

于 2012-12-19T15:19:09.737 回答
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;

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

于 2012-12-19T14:25:53.890 回答