From 0cd2cbfa72b6e701990a36e5a50be387ae642adf Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Wed, 9 Aug 2023 19:10:34 +0200 Subject: [PATCH] Make it more explicit --- docs/reverse.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reverse.rst b/docs/reverse.rst index 66bc9f48..9e70d40c 100644 --- a/docs/reverse.rst +++ b/docs/reverse.rst @@ -60,12 +60,12 @@ and then add the following to the front section: - "traefik.enable=true" # the second part is important to ensure Mailu can get certificates from letsencrypt - - "traefik.http.routers.web.rule=Host(`fqdn.example.com`) || Path(`/.well-known/acme-challenge/`)" + - "traefik.http.routers.web.rule=Host(`mail.example.com`) || Path(`/.well-known/acme-challenge/`)" - "traefik.http.routers.web.entrypoints=web" - "traefik.http.services.web.loadbalancer.server.port=80" #other FQDNS can be added here: - - "traefik.tcp.routers.websecure.rule=HostSNI(`fqdn.example.com`) || HostSNI(`autoconfig.example.com`) || HostSNI(`mta-sts.example.com`)" + - "traefik.tcp.routers.websecure.rule=HostSNI(`mail.example.com`) || HostSNI(`autoconfig.example.com`) || HostSNI(`mta-sts.example.com`)" - "traefik.tcp.routers.websecure.entrypoints=websecure" - "traefik.tcp.routers.websecure.tls.passthrough=true" - "traefik.tcp.routers.websecure.service=websecure"