Remove access log from gunicorn

This commit is contained in:
Patrick Jentsch 2021-11-15 14:35:37 +01:00
parent 3a23fb5dc8
commit f711eec53b

View File

@ -14,8 +14,8 @@ if [[ "${#}" -eq 0 ]]; then
echo "INFO Start nopaque daemon..." echo "INFO Start nopaque daemon..."
flask daemon run & flask daemon run &
fi fi
echo "INFO Start nopaque..."
gunicorn \ gunicorn \
--access-logfile - \
--error-logfile - \ --error-logfile - \
$([ "${ENABLE_GUNICORN_RELOAD:-False}" == "True" ] && echo "--reload") \ $([ "${ENABLE_GUNICORN_RELOAD:-False}" == "True" ] && echo "--reload") \
--worker-class eventlet \ --worker-class eventlet \