Separate deploy scripts to fnpdeploy.
[fnpdjango.git] / fnpdjango / deploy / templates / gunicorn.template
diff --git a/fnpdjango/deploy/templates/gunicorn.template b/fnpdjango/deploy/templates/gunicorn.template
deleted file mode 100644 (file)
index e2f5b5a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-CONFIG = {
-    'mode': 'wsgi',
-    'working_dir': '%(full_django_root)s',
-    'python': '%(app_path)s/ve/bin/python',
-    'user': '%(user)s',
-    'group': '%(user)s',
-    'args': (
-        '--bind=unix:/tmp/gunicorn-%(project_name)s.socket',
-        '--workers=1',
-        '--timeout=180',
-        '%(project_name)s.wsgi:application',
-        '--access-logfile=%(app_path)s/log/gunicorn.log',
-        '--error-logfile=%(app_path)s/log/gunicorn-error.log',
-    ),
-}