From 9c50af8425d3487b889fb55f6425fa2a228d6c88 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 16 Feb 2011 23:23:09 +0000 Subject: [PATCH] Updated UWSGI config --- auth_uwsgi.xml | 11 +++++++++++ fabfile.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 auth_uwsgi.xml diff --git a/auth_uwsgi.xml b/auth_uwsgi.xml new file mode 100644 index 0000000..2a5b49f --- /dev/null +++ b/auth_uwsgi.xml @@ -0,0 +1,11 @@ + + 127.0.0.1:8811 + ./env/ + ./ + auth_wsgi + + 5 + ./logs/uwsgi.log + ./logs/uwsgi.pid + + diff --git a/fabfile.py b/fabfile.py index edaefdd..d1c6e86 100644 --- a/fabfile.py +++ b/fabfile.py @@ -196,7 +196,7 @@ def restart_celeryd(): def start_uwsgi(): with cd('%(path)s/dreddit-auth/' % env): - run('uwsgi -x uwsgi.xml' % env) + run('uwsgi -x auth_uwsgi.xml' % env) def stop_uwsgi():