I have a Rails 3.1 app that I'm trying to test in the production environment. I ran RAILS_ENV=production rake assets:precompile which generated all of my assets in /public/assets. The problem is that when I start my app w/ RAILS_ENV=production rails s thin I get:

ActionController::RoutingError (No route matches [GET] "/assets/application-eff78fd67423795a7be3aa21512f0bd2.css"):

This file does exist though at /public/assets/application-eff78fd67423795a7be3aa21512f0bd2.css. Any thoughts as to why I'm getting this RoutingError?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 28 down vote accepted

In production mode, Rails will not be responsible for serving static assets. Therefore, you are getting this error. Thin won't do it either, since it's just a wrapper around Rails.

This is controlled by this setting in config/environment/production.rb in your application:

config.serve_static_assets = false

You can either set to that true or use a real server like Apache or Nginx which will serve the static assets. I suspect Pow may also do it.

link|improve this answer
feedback

Adding to what Ryan said above, the Rails asset pipeline guide describes how to setup Apache or nginx to serve the static assets for you.

http://guides.rubyonrails.org/asset_pipeline.html

You really should setup nginx or Apache to serve static assets, as they're much better optimized for this task than mongrel/thin/unicorn.

link|improve this answer
feedback

Thanks. But it is not clear to me what I should do to test the production setup before actually deploying. I thought either rails s --environment production or what OP did are the right ways to test it out. Now, in dev, I have either Thin or Webrick set up and I can't serve static content off that. That means, this setting has to be set to true now and then it has to be set back to false when I deploy it using passenger on Nginx/apache. I think this is way too confusing, no?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.