Add missing setting

This commit is contained in:
Fierelier 2023-11-08 08:59:28 +01:00
parent 794c265c1d
commit c617b25c59
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,8 @@ global bufferCost
bufferCost = 1024 # Virtually add extra cost to each buffer piece to prevent clients from overloading the server by sending super small pieces.
global maxBuffer
maxBuffer = 20*1024*1024 # The maximum buffer size of a stream in bytes. Old buffers are discarded, clients that depend on them get disconnected.
global httpHeaderMaxSize
httpHeaderMaxSize = 16192 # Maximum size for faux incoming HTTP header
global tokenTimeout
tokenTimeout = 120.0 # How long it takes, in seconds, for a login token to time out.
global tokenLength