Skip to content

Commit

Permalink
Gunicorn tweaks, unlimited limit-request-line & limit-request-field_size
Browse files Browse the repository at this point in the history
This is mostly to enable long text in the Markdown widget
Related:
benoitc/gunicorn#376
  • Loading branch information
mistercrunch committed May 20, 2016
1 parent f5180d8 commit 1dc4b24
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions caravel/bin/caravel
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ def runserver(debug, port, timeout, workers):
"-w {workers} "
"--timeout {timeout} "
"-b 0.0.0.0:{port} "
"--limit-request-line 0 "
"--limit-request-field_size 0 "
"caravel:app").format(**locals())
print("Starting server with command: " + cmd)
Popen(cmd, shell=True).wait()
Expand Down

0 comments on commit 1dc4b24

Please sign in to comment.