Hello fellow developers,
I’m using app platform to host a static website, and while my domain is registered on godaddy, I’ve pointed the nameservers to DO and everything is working fine with my domain. The problem happens when I enter the domain using http instead of https. How to redirect all http requests to https? For reference, my domain is twowords.design. According to this question, it’s not possible yet: https://www.digitalocean.com/community/questions/how-to-redirect-301-on-the-digital-ocean-apps-platform However, it says here that http should automatically be redirected to https: https://www.digitalocean.com/community/questions/is-possible-disable-http-in-digital-app-platform-static-site
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.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hello @bavly
Yes, the domain will automatically be redirected to HTTPS and there are no changes required from your end. Already, I see the domain with HTTP link http://twowords.design/ is getting redirected to https://twowords.design/ successfully.
You can check the Location field in the below curl output:
The dig output is returning 3 IP addresses in which one associated with Droplet 161.35.103.124 so when it resolves to that IP address you might experience the issue. Please remove that Droplet IP address from A record list:
Docs for deleting the DNS record
Best Dikshith
Hi. Tell me please: can I use http without redirect to https?
P.S: I use site as websocket client. Client have to connect to websocket server. This server running on device in local network.
If site published as https, client have to connect to “wss://“ But I can’t use “wss://“ in local network, just “ws://“. Can I publish static site as “http”?
This comment has been deleted