Comment on nginx https only works when not on local network
lemmyreader@lemmy.ml 9 months ago
You are not using a http to https redirect. Is that turned off for debugging ?
Try using the openssl command line to connect with the advantage of not having to think about app or web browser caches :
s_client can be used to debug SSL servers. To connect to an SSL HTTP server the command:
openssl s_client -connect servername:443
would typically be used (https uses port 443). If the connection succeeds then an HTTP command can be given such as “GET /” to retrieve a web page.
Blisterexe@lemmy.zip 9 months ago
that times out, it doesnt give any information, thanks anyways though!
surewhynotlem@lemmy.world 9 months ago
Does tcping connect at all? Traceroute?
Blisterexe@lemmy.zip 9 months ago
Turns out the issue is that my router does not support NAT loopback, and I’ve found a fix for that, thank you for the help tho