#damn a lot of things there, how should I

1 messages · Page 1 of 1 (latest)

past dust
#

Personally I'd recommend Traefik - it's a Docker aware proxy and handles SSL cert updates from LetsEncrypt/ZeroSSL natively

#

You then just label the container:

    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.your-ha.rule=Host(`your-ha.example.org`)"
      - "traefik.http.routers.your-ha.tls=true"
      - "traefik.http.routers.your-ha.tls.certresolver=letsencrypt"
      - "traefik.http.services.your-ha.loadBalancer.server.port=8123"