From 3bffe2c873cd921ad6d2f846597ed0062e66aba6 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Tue, 18 Sep 2012 19:12:52 -0400 Subject: [PATCH] Adding guni for server --- gunicorn.conf.server.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 gunicorn.conf.server.py diff --git a/gunicorn.conf.server.py b/gunicorn.conf.server.py new file mode 100644 index 0000000..08b4f8b --- /dev/null +++ b/gunicorn.conf.server.py @@ -0,0 +1,12 @@ +bind = "unix:/tmp/gunicorn.snipt.sock" +daemon = False # Whether work in the background +debug = False # Some extra logging +logfile = ".gunicorn.log" # Name of the log file +loglevel = "info" # The level at which to log +pidfile = ".gunicorn.pid" # Path to a PID file +workers = 9 # Number of workers to initialize +umask = 0 # Umask to set when daemonizing +user = None # Change process owner to user +group = None # Change process group to group +proc_name = "gunicorn-snipt" # Change the process name +tmp_upload_dir = None # Set path used to store temporary uploads