N-FIN-45: add example traefik setup

This commit is contained in:
Markus Thielker 2024-03-24 20:17:42 +01:00
parent f36a44aacd
commit 0807c1cbc7
No known key found for this signature in database
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
[entryPoints]
[entryPoints.web]
address = ":80"
# [entryPoints.web.http.redirections.entryPoint]
# to = "websecure"
# scheme = "https"
[entryPoints.websecure]
address = ":443"
[providers.docker]
watch = true
network = "web"

View file

@ -0,0 +1,13 @@
#
# run this container on your server to use traefik as a reverse proxy
#
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
-v $PWD/traefik.toml:/traefik.toml \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
--network web \
--name traefik \
traefik:v2.10