Running thin server in production mode isn't loading my assets Running thin server in production mode isn't loading my assets ruby ruby

Running thin server in production mode isn't loading my assets


Rails serving static files is turned off in production (config/environments/production.rb) by default:

# Disable Rails's static asset server (Apache or nginx will already do this)config.serve_static_assets = false

The Thin server is not configured to serve the static assets, and so requests to your assets are failing.