Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/homelab/apps/traefik/traefik.nix
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@
metrics.address = "127.0.0.1:8083";
websecure = {
address = ":443";
# traefik v3 defaults readTimeout to 60s, which kills any
# request body still streaming after a minute — i.e. large
# oCIS tus upload chunks. ownCloud's own traefik example
# uses 12h for upload workloads.
transport.respondingTimeouts.readTimeout = "12h";
Comment on lines +127 to +131
# We keep TLS generic here; router will say which certResolver to use
http = {
tls = { };
Expand Down