[SOLVED] I've set up docker services behind nginx proxy manager so they're accessible with https, but the http services are still open. How do I close them?
schizo @ schizo @forum.uncomfortable.business Posts 11Comments 1,666Joined 1 yr. ago
schizo @ schizo @forum.uncomfortable.business
Posts
11
Comments
1,666
Joined
1 yr. ago
Change your port definitions so that they're only binding to localhost, like so:
That'll stop access from anywhere but the local host. You'll have to redo your reverse proxy configuration to use 127.0.0.1 instead of whatever you're using now, though.