Skip to content

Instantly share code, notes, and snippets.

@suzaku
Created June 1, 2017 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzaku/01d2a3284ac406ae209281fa87fe4e83 to your computer and use it in GitHub Desktop.
Save suzaku/01d2a3284ac406ae209281fa87fe4e83 to your computer and use it in GitHub Desktop.
# RTFM -> http://docs.gunicorn.org/en/latest/settings.html#settings
bind = '0.0.0.0:9090'
workers = 1 # only use one process to make sure all testing requests hit the same worker
timeout = 3 # set a very low timeout value so that we can more easily reproduce the issue
worker_connections = 5000 # allow more connections to make the server busy
proc_name = 'experiment'
accesslog = '-'
errorlog = '-'
loglevel = 'info'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment