From 6dd1502a31e454ffb119da25684d0ff327d84914 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Wed, 31 Jul 2013 22:06:02 +0200 Subject: [PATCH] gunicorn sample fix --- fnpdjango/deploy/templates/gunicorn.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fnpdjango/deploy/templates/gunicorn.template b/fnpdjango/deploy/templates/gunicorn.template index 5cf60f4..40e4bd9 100644 --- a/fnpdjango/deploy/templates/gunicorn.template +++ b/fnpdjango/deploy/templates/gunicorn.template @@ -1,6 +1,6 @@ CONFIG = { 'mode': 'wsgi', - 'working_dir': '%(app_path)s/releases/current/%(project_name)s', + 'working_dir': '%(app_path)s/releases/current', 'python': '%(app_path)s/ve/bin/python', 'user': '%(user)s', 'group': '%(user)s', @@ -8,8 +8,8 @@ CONFIG = { '--bind=unix:/tmp/gunicorn-%(project_name)s.socket', '--workers=1', '--timeout=180', - 'wsgi:application', + '%(project_name)s.wsgi:application', '--access-logfile=%(app_path)s/log/gunicorn.log', - '--error-logfile=%(app_path)s/log/gunicorn-error.log'. + '--error-logfile=%(app_path)s/log/gunicorn-error.log', ), } -- 2.20.1