mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
11 lines
203 B
Python
11 lines
203 B
Python
|
import multiprocessing
|
||
|
|
||
|
bind = "0.0.0.0:42110"
|
||
|
workers = 4
|
||
|
worker_class = "uvicorn.workers.UvicornWorker"
|
||
|
timeout = 120
|
||
|
keep_alive = 60
|
||
|
accesslog = "access.log"
|
||
|
errorlog = "error.log"
|
||
|
loglevel = "debug"
|