fix backups

This commit is contained in:
Para Dox
2025-04-29 18:00:53 +07:00
parent fca23f8205
commit 362f6bd577
2 changed files with 5 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ services:
- "traefik.http.routers.backup-storage.entrypoints=websecure"
- "traefik.http.routers.backup-storage.tls.certresolver=myresolver"
- "traefik.http.routers.backup-storage.rule=Host(`$DOMAIN`) && PathPrefix(`/dav`)"
- "traefik.http.routers.backup-storage.middlewares=backup-storage-stripprefix"
- "traefik.http.routers.backup-storage.middlewares=backup-storage-stripprefix"
networks:
- chains

View File

@@ -19,8 +19,10 @@ services:
- "--providers.docker.exposedbydefault=false"
- "--providers.file.filename=/dynamic_config.yml"
- "--entrypoints.websecure.address=:443"
- "--entryPoints.metrics.address=:8082"
- "--entryPoints.grpc.address=:3042"
# disable read timeout to not timeout webdav uploads
- "--entrypoints.websecure.transport.respondingTimeouts.readTimeout=0"
- "--entrypoints.metrics.address=:8082"
- "--entrypoints.grpc.address=:3042"
- "--entrypoints.web.address=:80"
- "--metrics.prometheus.entryPoint=metrics"
- "${NO_SSL:---entrypoints.web.http.redirections.entryPoint.to=websecure}"