Please help me I would be very grateful. I have a domain on godaddy.com which I've given the DNS of my AWS EC2. I can successfully run a flask application with the code
app.run(host="0.0.0.0", port=8000, debug=True,ssl_context=('fullchain.pem', 'privkey.pem')) If I open the link https://typearncontrol.com:8000/latest in my browser I would get a result.
I'm trying to run a gin gonic application with the code router.RunTLS(("0.0.0.0:8083"),"fullchain.pem","privkey.pem") When I try to open the link https://typearncontrol.com:8083/2 which is a page of my gin app I get the error "This site can’t be reached"
Please help me resolve this.
Comment From: AgentX998
I've got it work, for some reason the gin code has started to work on domain when I've set it's port to 8000