Comment on How to reach different services via name instead of ip?
CameronDev@programming.dev 1 week ago
Nginx proxy manager can help you with all of that.
basically want a domain name that you can use to subdomain each service off.
E.g: service1.auth.local -> proxies your first service (192.168.1.111:4567) Https:/service2.auth.local -> proxies to the second (192.168.1.123:9876) And so on.
If you purchase an actual domain name, you can get letencrypt certs via nginx proxy manager, and it all works very smoothly.
Auth@lemmy.world 1 week ago
Ok thanks ill give that ago tonight. I never would have thought of a proxy manager.
CameronDev@programming.dev 1 week ago
You can of course do it manually with plain nginx, it’s just a little more effort.
illusionist@lemmy.zip 1 week ago
I used nginx proxy manager for a while. Nowadays I use caddy, and I wouldn’t want to look back. It has no gui but a caddyfile. It works much smoother for me.
foggy@lemmy.world 1 week ago
Traefik’s configs are a little less cumbersome if you’re managing a lot of services.