From 552a6355c70dcc472410149b262375330d753e92 Mon Sep 17 00:00:00 2001 From: jar3b Date: Mon, 25 Apr 2016 11:09:22 +0300 Subject: [PATCH] Add gunicorn config --- gunicorn.conf.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 gunicorn.conf.py diff --git a/gunicorn.conf.py b/gunicorn.conf.py new file mode 100644 index 0000000..a44eded --- /dev/null +++ b/gunicorn.conf.py @@ -0,0 +1,9 @@ +#bind = "127.0.0.1:8888" +bind = "unix:/tmp/fias-api-unicorn.sock" +# bind = "unix:/home/proft/projects/blog/run/blog.socket" +workers = 5 +user = "fias" +group = "fias" +logfile = "/var/log/gunicorn.log" +loglevel = "info" +proc_name = "blog" \ No newline at end of file