diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 17:37:10 +0000 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 17:37:10 +0000 |
| commit | 83a59fba10d92611c09be23be74124de1df36f54 (patch) | |
| tree | 1f2757d4e1a14d76d132dd6566a7517bc5341aff /conf | |
| parent | 044ccd2d470b266de437d6aa9cec99f928cb305b (diff) | |
| download | ihatemoney-mirror-83a59fba10d92611c09be23be74124de1df36f54.zip ihatemoney-mirror-83a59fba10d92611c09be23be74124de1df36f54.tar.gz ihatemoney-mirror-83a59fba10d92611c09be23be74124de1df36f54.tar.bz2 | |
update the path to the app for all conf files
Diffstat (limited to 'conf')
| -rw-r--r-- | conf/gunicorn.conf.py | 4 | ||||
| -rw-r--r-- | conf/supervisord.conf | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/conf/gunicorn.conf.py b/conf/gunicorn.conf.py index 3bd1834..8412a10 100644 --- a/conf/gunicorn.conf.py +++ b/conf/gunicorn.conf.py @@ -2,6 +2,6 @@ backlog = 2048 daemon = False debug = True workers = 3 -logfile = "/usr/local/www/notmyidea.org/fractals/fractals.gunicorn.log" +logfile = "/path/to/your/app/budget.gunicorn.log" loglevel = "info" -bind = "unix:/usr/local/www/notmyidea.org/fractals/fractals.gunicorn.sock" +bind = "unix:/path/to/your/app/budget.gunicorn.sock" diff --git a/conf/supervisord.conf b/conf/supervisord.conf index 5b5ec9f..742759e 100644 --- a/conf/supervisord.conf +++ b/conf/supervisord.conf @@ -1,6 +1,6 @@ -[program:fractals] -command=/usr/local/www/notmyidea.org/fractals/venv/bin/gunicorn -c /usr/local/www/notmyidea.org/fractals/gunicorn.conf.py budget:app -directory=/usr/local/www/notmyidea.org/fractals/budget/ +[program:budget] +command=/path/to/your/app/venv/bin/gunicorn -c /path/to/your/app/conf/gunicorn.conf.py budget:app +directory=/path/to/your/app/budget/ user=www autostart=true autorestart=true |
