matrix: Remove unused traefik host rule for synapse federation

This patch removes the routing to the server domain with the federation path, since all federation is handled via the synapse domain anyways.
This commit is contained in:
saibotk 2021-08-23 02:34:02 +02:00
parent 93ae866f63
commit eb6bcff14d
Signed by: saibotk
GPG key ID: 67585F0065E261D5

View file

@ -44,7 +44,7 @@ services:
depends_on:
- database
labels:
- "traefik.http.routers.matrix.rule=Host(`{{ matrix_synapse_servername }}`) && PathPrefix(`/_matrix/federation`) || Host(`{{ matrix_synapse_domain }}`) && PathPrefix(`/`)"
- "traefik.http.routers.matrix.rule=Host(`{{ matrix_synapse_domain }}`) && PathPrefix(`/`)"
- "traefik.http.routers.matrix.entrypoints=websecure"
- "traefik.http.routers.matrix.tls.certresolver={{ matrix_traefik_certresolver }}"
- "traefik.http.routers.matrix.middlewares=matrix,compress"