pass through all arguments so you can give gunicorn extra flags

This commit is contained in:
burnettk 2023-02-13 11:45:43 -05:00
parent e5c503d737
commit 66b6f77e99
1 changed files with 1 additions and 1 deletions

View File

@ -16,4 +16,4 @@ workers=3
# THIS MUST BE THE LAST COMMAND!
# default --limit-request-line is 4094. see https://stackoverflow.com/a/66688382/6090676
exec poetry run gunicorn --bind "0.0.0.0:$port" --workers="$workers" --limit-request-line 8192 --timeout 90 --capture-output --access-logfile '-' --log-level debug app:app
exec poetry run gunicorn --bind "0.0.0.0:$port" --workers="$workers" --limit-request-line 8192 --timeout 90 --capture-output --access-logfile '-' --log-level "$@" debug app:app