Skip to content

Commit a738092

Browse files
fix: traefik rejects supported file characters (#179)
1 parent 3bddb65 commit a738092

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

config/traefik/docker-entrypoint-override.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@ add_arg "--entryPoints.https.address=:${TRAEFIK_PORT_HTTPS:-443}"
2323
add_arg "--entryPoints.https.transport.respondingTimeouts.readTimeout=12h"
2424
add_arg "--entryPoints.https.transport.respondingTimeouts.writeTimeout=12h"
2525
add_arg "--entryPoints.https.transport.respondingTimeouts.idleTimeout=3m"
26-
# allow encoded characters required for WOPI/Collabora
26+
# allow encoded characters
27+
# required for WOPI/Collabora
2728
add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedSlash=true"
2829
add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedQuestionMark=true"
2930
add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedPercent=true"
31+
# required for file operations with supported encoded characters
32+
add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedSemicolon=true"
33+
add_arg "--entryPoints.https.http.encodedCharacters.allowEncodedHash=true"
3034
# docker provider (get configuration from container labels)
3135
add_arg "--providers.docker.endpoint=unix:///var/run/docker.sock"
3236
add_arg "--providers.docker.exposedByDefault=false"

0 commit comments

Comments
 (0)