lavkach3
1from multiprocessing import cpu_count2
3# Socket Path
4#bind = 'unix:/fundamental/viktor-shved/lavkach/gunicorn.sock'
5bind = "127.0.0.1:8000"6
7# Worker Options
8workers = cpu_count() + 19worker_class = 'uvicorn.workers.UvicornWorker'10
11# Logging Options
12loglevel = 'debug'13#accesslog = '/fundamental/viktor-shved/lavkach/access_log'
14#errorlog = '/fundamental/viktor-shved/lavkach/error_log'
15