Conduit is a simple, fast and reliable chat server powered by Matrix https://conduit.rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
847 B
21 lines
847 B
# Conduit - Traefik Reverse Proxy Labels |
|
version: '3' |
|
|
|
services: |
|
homeserver: |
|
labels: |
|
- "traefik.enable=true" |
|
- "traefik.docker.network=proxy" |
|
|
|
- "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" |
|
- "traefik.docker.network=proxy" |
|
|
|
- "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"
|
|
|