Comment on what's the simple way to map services to subdomains instead of specifying the port number?

stratself@lemdro.id ⁨1⁩ ⁨day⁩ ago

Use Caddy on each device, with tls turned off. Basically

http://service1.devicename.lan/ {
    tls off
    reverse_proxy localhost:8000
}
http://service2.devicename.lan/ {
    tls off
    reverse_proxy localhost:8096
}

original
Sort:hotnewtop