Skip to content

Commit

Permalink
Tweaked gunicorn config
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmwatson committed Jan 10, 2024
1 parent 037ed33 commit cce63c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ WORKDIR /app

RUN bundle install

CMD gunicorn --limit-request-line 7168 --worker-class gevent pombola.wsgi:application -t 600 --log-file - -b 0.0.0.0:5000
CMD gunicorn --workers 5 --worker-class gevent --timeout 30 --max-requests 10000 --max-requests-jitter 100 --limit-request-line 7168 --log-file - -b 0.0.0.0:5000 pombola.wsgi:application

0 comments on commit cce63c4

Please sign in to comment.