summaryrefslogtreecommitdiff
path: root/docker/docker-compose.override.traefik.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker/docker-compose.override.traefik.yml')
-rw-r--r--docker/docker-compose.override.traefik.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/docker/docker-compose.override.traefik.yml b/docker/docker-compose.override.traefik.yml
new file mode 100644
index 0000000..2096d79
--- /dev/null
+++ b/docker/docker-compose.override.traefik.yml
@@ -0,0 +1,22 @@
+# Conduit - Traefik Reverse Proxy Labels
+version: '3'
+
+services:
+ homeserver:
+ labels:
+ - "traefik.enable=true"
+ - "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"
+
+ ### Uncomment this if you uncommented Element-Web App in the docker-compose.yml
+ # element-web:
+ # labels:
+ # - "traefik.enable=true"
+ # - "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"