38 lines
1.4 KiB
YAML
38 lines
1.4 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
histoiredunpied:
|
|
container_name: ${NAME}
|
|
build: .
|
|
image: ${NAME}
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.docker.network: "traefik"
|
|
|
|
# Redirect http:// to https://
|
|
traefik.http.routers.histoiredunpied.rule: "Host(`${URL}`)"
|
|
traefik.http.routers.histoiredunpied.entrypoints: "web"
|
|
traefik.http.routers.histoiredunpied.middlewares: "redirect-https@docker"
|
|
|
|
traefik.http.routers.histoiredunpied-https.rule: "Host(`${URL}`)"
|
|
traefik.http.routers.histoiredunpied-https.entrypoints: "websecure"
|
|
traefik.http.routers.histoiredunpied-https.tls.certResolver: "letsencrypt"
|
|
|
|
# Redirect http://www to https://
|
|
traefik.http.routers.histoiredunpied-redirect-www.rule: "Host(`www.${URL}`)"
|
|
traefik.http.routers.histoiredunpied-redirect-www.entrypoints: "web"
|
|
traefik.http.routers.histoiredunpied-redirect-www.middlewares: "redirect-www@docker"
|
|
|
|
# Redirect https://www to https://
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.rule: "Host(`www.${URL}`)"
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.entrypoints: "websecure"
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.tls.certResolver: "letsencrypt"
|
|
traefik.http.routers.histoiredunpied-redirect-www-https.middlewares: "redirect-www@docker"
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: traefik
|