Skip to content

Commit

Permalink
Increase waitress limits
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdijk committed Mar 8, 2024
1 parent 09b6436 commit 20cee0a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion narrowcast_content/waitress_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
from . import app
from paste.translogger import TransLogger

serve(TransLogger(app, setup_console_handler=False), host='0.0.0.0', port=8080)
serve(TransLogger(app, setup_console_handler=False),
host='0.0.0.0',
port=8080,
connection_limit=500,
threads=8,
)

0 comments on commit 20cee0a

Please sign in to comment.