0

我正在尝试将 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 错误。如果我删除块“位置〜^ /(资产)/ {”它工作得很好,但它非常慢。

有人能帮我吗?

4

1 回答 1

0

你在预编译你的资产吗?rake assets:cleanrake assets:precompile

于 2012-12-29T16:22:06.210 回答