Add missing setting
This commit is contained in:
parent
794c265c1d
commit
c617b25c59
@ -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.
|
bufferCost = 1024 # Virtually add extra cost to each buffer piece to prevent clients from overloading the server by sending super small pieces.
|
||||||
global maxBuffer
|
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.
|
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
|
global tokenTimeout
|
||||||
tokenTimeout = 120.0 # How long it takes, in seconds, for a login token to time out.
|
tokenTimeout = 120.0 # How long it takes, in seconds, for a login token to time out.
|
||||||
global tokenLength
|
global tokenLength
|
||||||
|
Loading…
Reference in New Issue
Block a user