1# The IP address (typically localhost) and port that the Netbox WSGI process should listen on
2bind = '127.0.0.1:8001'
3
4# Number of gunicorn workers to spawn. This should typically be 2n+1, where
5# n is the number of CPU cores present.
6workers = 5
7
8# Number of threads per worker process
9threads = 3
10
11# Timeout (in seconds) for a request to complete
12timeout = 120
13
14# The maximum number of requests a worker can handle before being respawned
15max_requests = 5000
16max_requests_jitter = 500
17