26 lines
881 B
TOML
26 lines
881 B
TOML
[services]
|
|
|
|
[services.nginx]
|
|
image = "fraoustin/fancyindex"
|
|
container_name = "index.korhonen.cc"
|
|
environment = ["DISABLE_AUTH=true", "CONTAINER_TIMEZONE=\"Europe/Helsinki\""]
|
|
volumes = ["/docker/index.korhonen.cc:/share"]
|
|
networks = ["proxy"]
|
|
restart = "unless-stopped"
|
|
labels = [
|
|
"traefik.enable=true",
|
|
"traefik.docker.network=proxy",
|
|
"traefik.http.routers.index-redirect.entrypoints=http",
|
|
"traefik.http.routers.index-redirect.rule=Host(`index.korhonen.cc`)",
|
|
"traefik.http.routers.index-redirect.middlewares=http2https@file",
|
|
"traefik.http.routers.index.entrypoints=https",
|
|
"traefik.http.routers.index.middlewares=secHeaders@file,compress@file",
|
|
"traefik.http.routers.index.rule=Host(`index.korhonen.cc`)",
|
|
"traefik.http.routers.index.service=index",
|
|
"traefik.http.services.index.loadbalancer.server.port=80",
|
|
]
|
|
|
|
[networks]
|
|
|
|
[networks.proxy]
|
|
external = true
|