32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
# Enable Traefik for this container
|
|
traefik.enable=true
|
|
|
|
# Docker Network
|
|
traefik.docker.network=traefik
|
|
|
|
# Route requests based on Host
|
|
traefik.http.routers.game-timer.rule=Host(`game-timer.virtonline.eu`)
|
|
# Specify the entrypoint ('websecure' for HTTPS)
|
|
traefik.http.routers.game-timer.entrypoints=web-secure
|
|
traefik.http.routers.game-timer.tls=true
|
|
traefik.http.routers.game-timer.tls.certResolver=default
|
|
# Link the router to the service defined below
|
|
traefik.http.routers.game-timer.service=game-timer
|
|
|
|
# Point the service to the container's port
|
|
traefik.http.services.game-timer.loadbalancer.server.port=80
|
|
|
|
# Declaring the user list
|
|
#
|
|
# Note: when used in docker-compose.yml all dollar signs in the hash need to be doubled for escaping.
|
|
# To create a user:password pair, the following command can be used:
|
|
# echo $(htpasswd -nb user password) | sed -e s/\\$/\\$\\$/g
|
|
#
|
|
# Also note that dollar signs should NOT be doubled when they are not evaluated (e.g. Ansible docker_container module).
|
|
# for docker lables use
|
|
# `htpasswd -nb user password`
|
|
traefik.http.middlewares.game-timer-auth.basicauth.users=user:$apr1$rFge2lVe$DpoqxMsxSVJubFLXu4OMr1
|
|
|
|
# Apply the middleware to the router
|
|
traefik.http.routers.game-timer.middlewares=game-timer-auth
|