Merge pull request #7376 from nextcloud/enh/7364/allow-percent-encoding

rp-docs: traefik: encode `%`
This commit is contained in:
Simon L. 2026-01-05 09:47:23 +01:00 committed by GitHub
commit 23f83bc280
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -871,10 +871,11 @@ The examples below define the dynamic configuration in YAML files. If you rather
respondingTimeouts:
readTimeout: 24h # Allows uploads > 100MB; prevents connection reset due to chunking (public upload-only links)
http:
# Required for Nextcloud to correctly handle encoded URL characters (%2F and %3F in this case) in newer Traefik versions (v3.6.4+).
# Required for Nextcloud to correctly handle encoded URL characters (%2F, %3F and %25 in this case) in newer Traefik versions (v3.6.4+).
encodedCharacters:
allowEncodedSlash: true
allowEncodedQuestionMark: true
allowEncodedPercent: true
# If you want to enable HTTP/3 support, uncomment the line below
# http3: {}