Rails, Ubuntu

Assets Not Being Served With Rails

When assets within app/assets/ are not even being served. Goto config/environments/production.rb and change the value of following into:

config.serve_static_files = true
config.assets.compile = true

And RESTART SERVER. With unicorn, it’s going to be:

service unicorn restart
Standard