1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-08 02:35:15 +02:00
conduit/docker-compose.override.traefik.yml

22 lines
975 B
YAML
Raw Normal View History

# Conduit - Traefik Reverse Proxy Labels
version: '3'
services:
homeserver:
labels:
- "traefik.enable=true"
2020-08-02 16:29:50 +02:00
- "traefik.docker.network=proxy" # Change this to the name of your Traefik docker proxy network
- "traefik.http.routers.to-conduit.rule=Host(`<SUBDOMAIN>.<DOMAIN>`)" # Change to the address on which Conduit is hosted
- "traefik.http.routers.to-conduit.tls=true"
- "traefik.http.routers.to-conduit.tls.certresolver=letsencrypt"
element-web:
labels:
- "traefik.enable=true"
2020-08-02 16:29:50 +02:00
- "traefik.docker.network=proxy" # Change this to the name of your Traefik docker proxy network
- "traefik.http.routers.to-element-web.rule=Host(`<SUBDOMAIN>.<DOMAIN>`)" # Change to the address on which Element-Web is hosted
- "traefik.http.routers.to-element-web.tls=true"
- "traefik.http.routers.to-element-web.tls.certresolver=letsencrypt"