60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
import os
|
|
|
|
# Gunicorn config variables
|
|
loglevel = os.getenv('AE_LOG_LVL', 'warning')
|
|
|
|
# accesslog = "/logs/gunicorn_access.log" # "-" # stdout
|
|
errorlog = "/logs/gunicorn_error.log" # "-" # stderr
|
|
# "logfile" does not seem to actually do anything
|
|
# logfile = "/logs/gunicorn.log" # "-" # stderr
|
|
|
|
bind = "0.0.0.0:5005"
|
|
# bind = "unix:/tmp/gunicorn.sock"
|
|
|
|
worker_tmp_dir = "/dev/shm"
|
|
|
|
chdir = "/srv/aether_app"
|
|
# home = /path/to/environment
|
|
wsgi_app = "run_server:app"
|
|
# module = "run_server"
|
|
# callable = "app"
|
|
# plugins = "python"
|
|
# default_proc_name = "run_server:app"
|
|
|
|
# Setting a longer timeout since some Flask app requests may take a while
|
|
timeout = os.getenv('AE_APP_GUNICORN_TIMEOUT', 1200) # default 30; worker process silent then kill and restart
|
|
graceful_timeout = os.getenv('AE_APP_GUNICORN_GRACEFUL_TIMEOUT', 20)
|
|
keepalive = os.getenv('AE_APP_GUNICORN_KEEPALIVE', 300) # default 2; setting higher because behind load balancer (nginx)
|
|
|
|
# Disable reload if using more than one thread
|
|
reload = True
|
|
|
|
# worker_class = "sync" # default "sync"
|
|
# Works are processes, not threads
|
|
# workers = 9 # default 1; use 10ish for production; 2 to 4 times the number of cores
|
|
# threads = 1 # default 1; only affects Gthread worker type
|
|
workers = os.getenv('AE_APP_GUNICORN_WORKERS', 2)
|
|
threads = os.getenv('AE_APP_GUNICORN_THREADS', 2)
|
|
|
|
# umask = '007'
|
|
|
|
# capture_output = True
|
|
|
|
|
|
# default_proc_name = "run_server:app"
|
|
|
|
# worker_class = "worker_class"
|
|
|
|
## From FastAPI for reference
|
|
# --bind unix:/home/scott/OSIT_dev/aether_api_fastapi/gunicorn.sock
|
|
# --umask 007 app.main:app
|
|
# --workers 2
|
|
# --worker-class uvicorn.workers.UvicornWorker
|
|
# --log-level debug
|
|
# --access-logfile admin/log/access.log
|
|
# --error-logfile admin/log/error.log
|
|
# --log-file admin/log/log.log
|
|
# --capture-output
|
|
# --keep-alive 5
|
|
# --reload
|