From: Guillaume Pellerin Date: Thu, 7 Nov 2013 23:11:52 +0000 (+0100) Subject: add uswgi X-Git-Tag: 1.0~7 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=1c11641f4ffc9d93cd6c2b5161cda8251984d9ad;p=telecaster-instance.git add uswgi --- 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