Initial commit
This commit is contained in:
59
conf/aether_flask_gunicorn_conf.py
Normal file
59
conf/aether_flask_gunicorn_conf.py
Normal file
@@ -0,0 +1,59 @@
|
||||
import os
|
||||
|
||||
# Gunicorn config variables
|
||||
loglevel = "debug"
|
||||
|
||||
# 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 = 1200 # default 30; worker process silent then kill and restart
|
||||
graceful_timeout = 20
|
||||
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_WORKERS', None)
|
||||
threads = os.getenv('AE_APP_THREADS', None)
|
||||
|
||||
# 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
|
||||
Reference in New Issue
Block a user