Hi all,
I’ve created a new App Platform app deploying a ruby on rails version. The app is fully deployed and database is all connected. However when I click on the app link the application does not load. Here the link: https://al-arqam-production-yq68i.ondigitalocean.app/
I’ve restarted the application, checked it’s running on port 8080. When I hit the url it doesn’t even show any errors or request calls in the log. So it looks like the url never reaches the application.
Any idea how i could resolve this please?
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.
To anyone else facing this issue, you need to go Settings -> Components -HTTP Request Routes -> and change Route Path to only a single forward slash /
Hey!
One thing that comes to my mind is to make sure your Rails app is binding to
0.0.0.0
on port8080
, not justlocalhost
. Also check that yourconfig.ru
orProcfile
(if using one) is correctly set to run the server.In
config/puma.rb
, try setting:Then redeploy.
Let me know how it goes.
- Bobby
Just deployed a brand new application and same probem.
using rails version 3.3.4