allow request to be 8k w/ burnettk

This commit is contained in:
jasquat 2022-10-19 16:14:32 -04:00
parent 6c573bb645
commit 22bc667585
1 changed files with 1 additions and 1 deletions

View File

@ -51,4 +51,4 @@ export IS_GUNICORN="true"
export PROCESS_WAITING_MESSAGES="true"
# THIS MUST BE THE LAST COMMAND!
exec poetry run gunicorn ${additional_args} --bind "0.0.0.0:$port" --workers="$workers" --timeout 90 --capture-output --access-logfile '-' --log-level debug wsgi:app
exec poetry run gunicorn ${additional_args} --bind "0.0.0.0:$port" --workers="$workers" --limit-request-line 8192 --timeout 90 --capture-output --access-logfile '-' --log-level debug wsgi:app