From 1c11641f4ffc9d93cd6c2b5161cda8251984d9ad Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 8 Nov 2013 00:11:52 +0100 Subject: [PATCH] add uswgi --- uwsgi.ini | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 uwsgi.ini diff --git a/uwsgi.ini b/uwsgi.ini new file mode 100644 index 0000000..5dd2db1 --- /dev/null +++ b/uwsgi.ini @@ -0,0 +1,25 @@ +# mysite_uwsgi.ini file +[uwsgi] + +projectdomain = telecasting.parisson.com + +# Django-related settings +# the base directory (full path) +chdir = /usr/local/lib/telecaster/instance/ +# Django's wsgi file +module = wsgi +# the virtualenv (full path) +#home = /home/parisson/apps/icpmedia/ + +# process-related settings +# master +master = true +# maximum number of worker processes +processes = 4 +# the socket (use the full path to be safe +socket = /usr/local/lib/telecaster/instance/sock/icpmedia.sock +# ... with appropriate permissions - may be needed +chmod-socket = 664 +# clear environment on exit +vacuum = true +buffer-size = 32768 -- 2.39.5