When I specify rails 1-click app to run in production it throws 502 error. What additional setup I need to do? Tried to find answer in existing topic but no luck
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @info3660cbfafe98de158fbe7e,
In order to run Rails server in production mode, you need to use following line:
rails s -e production
However, please notice that Rails assumes that you have your files precompiled for production environment. If you want to change this and have compiling during runtime in production you must change config.assets.compile in config/environments/production.rb to following:
config.assets.compile = true
If afterwards you still are experiencing the issue, I’ll suggest checking out your logs to see the exact reason behind the error.
Regards, KDSys
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.