Updated websites containers to use Traefik labels
This commit is contained in:
parent
463b9dc1f7
commit
661cebcec0
@ -10,6 +10,16 @@ services:
|
||||
- ./luke-else.co.uk/:/var/www/html
|
||||
depends_on:
|
||||
- traefik
|
||||
labels:
|
||||
## Expose luke-else Through Trefik ##
|
||||
- "traefik.enable=true" # <== Enable traefik to proxy this container
|
||||
- "traefik.http.routers.luke-else.rule=Host(`luke-else.co.uk`) || Host(`www.luke-else.co.uk`)"
|
||||
- "traefik.http.routers.luke-else.entrypoints=http"
|
||||
- "traefik.http.routers.luke-else.middlewares=redirect@file"
|
||||
|
||||
- "traefik.http.routers.luke-else-secured.rule=Host(`luke-else.co.uk`) || Host(`www.luke-else.co.uk`)"
|
||||
- "traefik.http.routers.luke-else-secured.entrypoints=https"
|
||||
- "traefik.http.routers.luke-else-secured.tls.certresolver=mytlschallenge"
|
||||
restart: unless-stopped
|
||||
|
||||
snexo.co.uk:
|
||||
@ -19,6 +29,16 @@ services:
|
||||
- ./snexo.co.uk/:/var/www/html
|
||||
depends_on:
|
||||
- traefik
|
||||
labels:
|
||||
## Expose Snexo Through Trefik ##
|
||||
- "traefik.enable=true" # <== Enable traefik to proxy this container
|
||||
- "traefik.http.routers.snexo.rule=Host(`snexo.luke-else.co.uk`) || Host(`www.snexo.luke-else.co.uk`)"
|
||||
- "traefik.http.routers.snexo.entrypoints=http"
|
||||
- "traefik.http.routers.snexo.middlewares=redirect@file"
|
||||
|
||||
- "traefik.http.routers.snexo-secured.rule=Host(`snexo.luke-else.co.uk`) || Host(`www.snexo.luke-else.co.uk`)"
|
||||
- "traefik.http.routers.snexo-secured.entrypoints=https"
|
||||
- "traefik.http.routers.snexo-secured.tls.certresolver=mytlschallenge"
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
|
Loading…
Reference in New Issue
Block a user