mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 23:17:17 +02:00
Added settings for webserver threadpool limits.
This commit is contained in:
parent
20e093aa26
commit
70ea21dab8
2 changed files with 12 additions and 15 deletions
|
|
@ -55,6 +55,10 @@ WEBSERVER_INTERFACES = ['0.0.0.0']
|
|||
# IP addresses that may talk to the server in a reverse proxy configuration,
|
||||
# like NginX.
|
||||
UPSTREAM_IPS = ['127.0.0.1']
|
||||
# The webserver uses threadpool for handling requests. This will scale
|
||||
# with server load. Set the minimum and maximum number of threads it
|
||||
# may use as (min, max) (must be > 0)
|
||||
WEBSERVER_THREADPOOL_LIMITS = (1, 20)
|
||||
# Start the evennia ajax client on /webclient
|
||||
# (the webserver must also be running)
|
||||
WEBCLIENT_ENABLED = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue