nginx - Rails application works in development but is empty in production -
my rails 4 application runs in development mode, @ production see empty page. it's running unicorn nginx in centos 7 vps. any hint need? unicorn_rails -c config/unicorn.rb -d unicorn_rails -c config/unicorn.rb -d -e production the logs of nginx, unicorn , rails don't show errors. rake routes [root@mycentos my_app]# rake routes prefix verb uri pattern controller#action blogs /blogs(.:format) blogs#index post /blogs(.:format) blogs#create new_blog /blogs/new(.:format) blogs#new edit_blog /blogs/:id/edit(.:format) blogs#edit blog /blogs/:id(.:format) blogs#show patch /blogs/:id(.:format) blogs#update put /blogs/:id(.:format) blogs#update delete /blogs/:id(.:format) blogs#destroy in development can access route, shows me error messages when route doesn't exist. in production, blank. i'm not boldly switc