1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-04 07:47:45 +02:00

traefik: fixed typo in reverse proxy section

This commit is contained in:
TiynGER 2021-05-21 16:14:52 +02:00
parent 1fbc10df24
commit 02f4b67f37

View File

@ -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(`<subdomain>.<domain>`)"
- "traefik.http.routers.gitea-secure.service=<service name>"
- "traefik.http.services.gitea.loadbalancer.server.port=<port>"
- "traefik.http.routers.<service name>-secure.entrypoints=websecure"
- "traefik.http.routers.<service name>-secure.rule=Host(`<subdomain>.<domain>`)"
- "traefik.http.routers.<service name>-secure.service=<service name>"
- "traefik.http.services.<service name>.loadbalancer.server.port=<port>"
```
This configuration automatically redirects http to https.