From 249c5195ef2fd1e4d0fb427e0b24d0d783cf37e2 Mon Sep 17 00:00:00 2001 From: Scott Hussey Date: Thu, 1 Mar 2018 09:25:00 -0600 Subject: [PATCH] [Fix] Allow larger headers in API requests - Some API calls require very long query strings and thus overrun the iuWSGI default 4k buffer sizes. Expand the buffer to handle these larger requests. Change-Id: If61a6b4370452094cbbc2e5f5a88254d0a21c00b --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 8a668575..8e77e100 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,6 +14,7 @@ if [ "$1" = 'server' ]; then --harakiri "${UWSGI_TIMEOUT}" \ --socket-timeout "${UWSGI_TIMEOUT}" \ --harakiri-verbose \ + -b 32768 \ --lazy-apps \ --master \ --thunder-lock \