Rails 3 アセット パイプラインで使用するように Nginx を構成しようとしています。
http {
passenger_root /home/ubuntu/.rvm/gems/ruby-1.9.3-p327/gems/passenger-3.0.18;
passenger_ruby /home/ubuntu/.rvm/wrappers/ruby-1.9.3-p327/ruby;
include mime.types;
default_type application/octet-stream;
sendfile on;
#keepalive_timeout 0;
keepalive_timeout 65;
server {
listen 80;
server_name myprojecthost.com *.myprojecthost.com;
#charset koi8-r;
#access_log logs/host.access.log main;
root /var/www/<my proj>/current/public;
location / {
passenger_enabled on;
rails_env staging;
root /var/www/<my proj>/current/public;
}
location ~ ^/(assets)/{
root /var/www/<my proj>/current/public;
expires max;
add_header Cache-Control public;
}
}
}
Rails は次のように構成されます。
MyProj::Application.configure do
# Code is not reloaded between requests
config.cache_classes = true
# Full error reports are disabled and caching is turned on
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_assets = true
# Compress JavaScripts and CSS
config.assets.compress = true
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = true
# Generate digests for assets URLs
config.assets.digest = true
# Defaults to Rails.root.join("public/assets")
# config.assets.manifest = YOUR_PATH
# Specifies the header that your server uses for sending files
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
# See everything in the log (default is :info)
config.log_level = :debug
# Use a different logger for distributed setups
# config.logger = SyslogLogger.new
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation can not be found)
config.i18n.fallbacks = true
# Send deprecation notices to registered listeners
config.active_support.deprecation = :notify
end
css ファイルが 404 エラーを返します。ブロック「location ~ ^/(assets)/{」を削除すると、うまく機能しますが、非常に遅くなります。
誰かが私を助けることができますか?