mirror of
https://github.com/9001/copyparty.git
synced 2025-08-16 08:32:13 -06:00
traefik-example: fix disconnect during big uploads
if an upload takes longer than 60 seconds, by default, traefik closes the connection thx to @JuvenoiaAgent@lemmy.ca for catching this
This commit is contained in:
parent
12dcea4f70
commit
6a9ffe7e06
|
@ -1,5 +1,18 @@
|
|||
# ./traefik --experimental.fastproxy=true --entrypoints.web.address=:8080 --providers.file.filename=copyparty.yaml
|
||||
# ./traefik --configFile=copyparty.yaml
|
||||
|
||||
entryPoints:
|
||||
web:
|
||||
address: :8080
|
||||
transport:
|
||||
# don't disconnect during big uploads
|
||||
respondingTimeouts:
|
||||
readTimeout: "0s"
|
||||
log:
|
||||
level: DEBUG
|
||||
providers:
|
||||
file:
|
||||
# WARNING: must be same filename as current file
|
||||
filename: "copyparty.yaml"
|
||||
http:
|
||||
services:
|
||||
service-cpp:
|
||||
|
|
Loading…
Reference in a new issue