We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a73771 commit 3e0d5ddCopy full SHA for 3e0d5dd
Dockerfile
@@ -32,4 +32,4 @@ RUN python3 -m pip install --no-cache-dir --extra-index-url https://www.piwheels
32
33
EXPOSE 5000
34
35
-CMD gunicorn -w 8 -b 0.0.0.0:5000 gramps_webapi.wsgi:app --timeout 120
+CMD gunicorn -w 8 -b 0.0.0.0:5000 gramps_webapi.wsgi:app --timeout 120 --limit-request-line 8190
demo/Dockerfile
@@ -16,5 +16,5 @@ ENV HOME /app
16
RUN python3 -m gramps_webapi --config /app/config/config.cfg search index-full
17
18
# the $PORT variable is needed for Heroku
19
-CMD gunicorn -w 2 -b 0.0.0.0:$PORT gramps_webapi.wsgi:app --timeout 120
+CMD gunicorn -w 2 -b 0.0.0.0:$PORT gramps_webapi.wsgi:app --timeout 120 --limit-request-line 8190
20
0 commit comments