配置Nginx以使用Rails 3资产管道

时间:2012-12-29 14:56:02

标签: ruby-on-rails-3 nginx

我正在尝试将Nginx配置为与Rails 3资产管道一起使用。

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)/ {”它运行良好,但速度非常慢。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

您是否在预编制资产? rake assets:cleanrake assets:precompile