Question
ActionController::RoutingError No route matches [GET] "/rails/info/properties"
This is the error I'm getting when I run my rails app. It runs fine on my local box but when I try to run it in production on my droplet it doesn't work. I'm running Rails 3.2.12 and Ruby 1.9.3 and nginx. In my nginx.conf file I added the following to my server directive:
listen 80;
server_name 198.211.104.139;
passenger_enabled on;
root /home/mike/www/rails_app/public;
mike
Add a comment
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×