アセット パイプラインを有効にして、Capistrano 経由で Rails 3.2.8 アプリケーションを Linode サーバーにデプロイしました。
nginx + unicorn を実行しています。
アプリケーションにアクセスすると、最小化された JS と CSS が提供されていませんが、アセットは にあり<RAILS_DIR>/public/assets
ます。
$ tree assets
assets
|-- application-66e477d6fd8cf088e8be44affeead089.css
|-- application-66e477d6fd8cf088e8be44affeead089.css.gz
|-- application-7d3ead38a0b5e276a97d48e52044ac31.js
|-- application-7d3ead38a0b5e276a97d48e52044ac31.js.gz
私のアプリケーションでは、これらの正確なファイルが見つからないことがわかります。
これは私の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;
}
何が悪いのか推測できますか?