Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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.
Hi @robywars,
First I think the server block that listens to port 80 should be like that:
server {
listen 80;
listen [::]:80;
server_name mysite.com www.mysite.com;
return 301 https://www.mysite.com$request_uri;
}
Of course where you see mysite.com change it to your actual domain.
If that doesn’t help, then I would recommend checking your Ruby application for some possible redirects. What I see when I curl your domain is, I reach the domain with HTTP, get redirected to HTTPS and then I’m constantly being redirected to:
Location: https://partecipativa.online/system/
Location: https://partecipativa.online/system/admins/sign_in
Location: https://partecipativa.online/system/
and so on, which leads me to believe it’s highly possible it’s the Ruby App that is causing the issues.