Compare commits

...

2 Commits

Author SHA1 Message Date
Fabian Halkivaha d30446e8ee
Merge 37001ce5f8 into 5b1d6b2850 2024-03-29 15:36:54 -03:00
Fabian Halkivaha 37001ce5f8
add GUNICORN_LOGLEVEL env var
to debug gunicorn, it is useful to specify the log level. This env var gives the possibility to define it in the docker image
2023-06-07 12:44:33 +02:00
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ gunicorn \
--workers ${SERVER_WORKER_AMOUNT:-1} \
--worker-class ${SERVER_WORKER_CLASS:-gthread} \
--threads ${SERVER_THREADS_AMOUNT:-20} \
--log-level "${GUNICORN_LOGLEVEL:info}" \
--timeout ${GUNICORN_TIMEOUT:-60} \
--keep-alive ${GUNICORN_KEEPALIVE:-2} \
--max-requests ${WORKER_MAX_REQUESTS:-0} \