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!
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi @info3660cbfafe98de158fbe7e,
In order to run Rails server in production mode, you need to use following line:
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:
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