Rails / Nginx没有提供JS和CSS

时间:2012-09-30 01:28:36

标签: ruby-on-rails nginx capistrano unicorn linode

我通过Capistrano将启用了资产管道的Rails 3.2.8应用程序部署到我的Linode服务器。

正在运行nginx + unicorn。

当我访问我的应用程序时,尽管<RAILS_DIR>/public/assets中存在资产,但仍未提供最小化的JS和CSS。

$ tree assets
assets
|-- application-66e477d6fd8cf088e8be44affeead089.css
|-- application-66e477d6fd8cf088e8be44affeead089.css.gz
|-- application-7d3ead38a0b5e276a97d48e52044ac31.js
|-- application-7d3ead38a0b5e276a97d48e52044ac31.js.gz

在我的应用程序中,我可以看到找不到那些确切的文件:

error

这是我的nginx配置:

server {
  listen 80 default deferred;
  server_name me.example.com;
  root /home/kennym/apps/app/current/public;

  location ^~ /assets/ {
    add_header Last-Modified "";
    add_header ETag "";
    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;
}

你能猜出出了什么问题吗?

3 个答案:

答案 0 :(得分:8)

location ^~ /assets/应为location ~ ^/assets/

前者与/ assets / 不匹配,后者匹配以/ assets /

开头的模式

更新你的nginx配置,让缓存和pre-gzipped文件服务再次运行。

答案 1 :(得分:2)

我通过在location ^~ /assets/中注释nginx.conf块来解决此问题。

答案 2 :(得分:0)

对于那些有同样问题的人,对我来说解决方案是进入/etc/nginx/conf.d/default.conf并正确设置root字段。