Disable compression until Traefik bug 9734 is fixed

This commit is contained in:
Daniel Berteaud 2024-01-05 17:05:32 +01:00
parent 525dfd397c
commit 2714e97e05
2 changed files with 3 additions and 2 deletions

View File

@ -39,7 +39,7 @@ job "lemonldap-ng" {
"traefik.http.routers.lemonldap-ng-portal.rule=Host(`sso.example.org`) && !PathRegexp(`^/index\\.psgi/(config|sessions)`)",
"traefik.http.routers.lemonldap-ng-portal.entrypoints=https",
"traefik.http.routers.lemonldap-ng-portal.priority=100",
"traefik.http.routers.lemonldap-ng-portal.middlewares=rate-limit-std@file,inflight-std@file,security-headers@file,hsts@file,compression@file",
"traefik.http.routers.lemonldap-ng-portal.middlewares=rate-limit-std@file,inflight-std@file,security-headers@file,hsts@file",
"traefik.http.routers.lemonldap-ng-manager.rule=Host(`manager.example.org`)",
"traefik.http.routers.lemonldap-ng-manager.entrypoints=https",
"traefik.http.routers.lemonldap-ng-manager.middlewares=rate-limit-std@file,inflight-std@file,security-headers@file,hsts@file,compression@file",

View File

@ -77,7 +77,8 @@ llng:
- inflight-std@file
- security-headers@file
- hsts@file
- compression@file
# Disable compression until https://github.com/traefik/traefik/pull/10178 is available in a release
#- compression@file
# List of middlewares to apply
middlewares: {}