From 02f4b67f377871432f31258e359fba762bb81849 Mon Sep 17 00:00:00 2001 From: TiynGER Date: Fri, 21 May 2021 16:14:52 +0200 Subject: [PATCH] traefik: fixed typo in reverse proxy section --- wiki/docker-images/traefik.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wiki/docker-images/traefik.md b/wiki/docker-images/traefik.md index 69570e1..89aa777 100644 --- a/wiki/docker-images/traefik.md +++ b/wiki/docker-images/traefik.md @@ -180,10 +180,10 @@ To create a reverse proxy from a docker container add the following lines in the ```yml - "traefik.enable=true" - - "traefik.http.routers.gitea-secure.entrypoints=websecure" - - "traefik.http.routers.gitea-secure.rule=Host(`.`)" - - "traefik.http.routers.gitea-secure.service=" - - "traefik.http.services.gitea.loadbalancer.server.port=" + - "traefik.http.routers.-secure.entrypoints=websecure" + - "traefik.http.routers.-secure.rule=Host(`.`)" + - "traefik.http.routers.-secure.service=" + - "traefik.http.services..loadbalancer.server.port=" ``` This configuration automatically redirects http to https.