[docs-only] Update AND fix ocis_full when using Traefik 3.6.4

This commit is contained in:
Martin Mattel
2025-12-10 11:37:11 +01:00
parent ec30031f29
commit 75b736a921
3 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
Enhancement: Update the ocis_full deployment example traefik image
* Traefik: 3.6.4
* Traefik fix for Collabora
https://github.com/owncloud/ocis/pull/11867

View File

@@ -12,7 +12,7 @@ INSECURE=true
# Note: Traefik is always enabled and can't be disabled.
# The recommended (and tested) version to pull. If no version is used, it pulls "latest"
# release notes: https://github.com/traefik/traefik/releases
TRAEFIK_DOCKER_TAG=v3.6.2
TRAEFIK_DOCKER_TAG=v3.6.4
# Serve Traefik dashboard.
# Defaults to "false".
TRAEFIK_DASHBOARD=

View File

@@ -23,6 +23,10 @@ services:
- "--entryPoints.https.transport.respondingTimeouts.readTimeout=12h"
- "--entryPoints.https.transport.respondingTimeouts.writeTimeout=12h"
- "--entryPoints.https.transport.respondingTimeouts.idleTimeout=3m"
# allow encoded characters which is required for collaboration/Collabora
- "--entryPoints.https.http.encodedCharacters.allowEncodedSlash=true"
- "--entryPoints.https.http.encodedCharacters.allowEncodedQuestionMark=true"
- "--entryPoints.https.http.encodedCharacters.allowEncodedPercent=true"
# docker provider (get configuration from container labels)
- "--providers.docker.endpoint=unix:///var/run/docker.sock"
- "--providers.docker.exposedByDefault=false"