HTTPS Port Forwarding Problems
I just got a static ip for my toob service so that I can access docker containers on my raspberry pi while away from home (mainly for home assistant). The raspi has a static local ip and is hosting a docker container for nginx proxy manager. The NPM container is set up to use 8081 for http and 8443 for https:
ports:
# Public HTTP Port:
- 8081:80
# Public HTTPS Port:
- 8443:443
I have set up 2 single port forward rules on the toob supplied linksys wifi 6 router to forward to the raspi local ip
- 80 -> 8081
- 443 -> 8443
If I browse to http://mystaticip I get the NPM welcome message, but if I browse to https://mystaticip it seems to direct me to a linksys dynamic login page (although no login box is shown, just a blank page with linksys EULA, TOS etc links).
I've tried disabling https local management access on the router just in case its something to do with that but no dice. It seems that for some reason the 443 port forward rule isn't being respected? Has anyone else ran into a similar problem?