From 34801789f6ed5733b8fabea7a6b74342813dd00c Mon Sep 17 00:00:00 2001 From: Alexander Ackermann Date: Mon, 2 Feb 2026 08:55:45 +0100 Subject: [PATCH] fix add back slash to traefik allowed encoded characters --- config/traefik/docker-entrypoint-override.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/traefik/docker-entrypoint-override.sh b/config/traefik/docker-entrypoint-override.sh index c83e9e3..3e316d7 100644 --- a/config/traefik/docker-entrypoint-override.sh +++ b/config/traefik/docker-entrypoint-override.sh @@ -24,13 +24,13 @@ add_arg "--entryPoints.https.transport.respondingTimeouts.readTimeout=12h" add_arg "--entryPoints.https.transport.respondingTimeouts.writeTimeout=12h" add_arg "--entryPoints.https.transport.respondingTimeouts.idleTimeout=3m" # allow encoded characters -# required for WOPI/Collabora +# required for WOPI/Collabora and file operations with supported encoded characters add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedSlash=true" add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedQuestionMark=true" add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedPercent=true" -# required for file operations with supported encoded characters add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedSemicolon=true" add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedHash=true" +add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedBackSlash=true" # docker provider (get configuration from container labels) add_arg "--providers.docker.endpoint=unix:///var/run/docker.sock" add_arg "--providers.docker.exposedByDefault=false"