pass through all arguments so you can give gunicorn extra flags
This commit is contained in:
parent
e5c503d737
commit
66b6f77e99
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue