diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/django.ini | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config/django.ini b/config/django.ini new file mode 100644 index 0000000..83db606 --- /dev/null +++ b/config/django.ini @@ -0,0 +1,30 @@ +# django.ini file +[uwsgi] + +# master +master = true + +# maximum number of processes +processes = 3 + +# the socket (use the full path to be safe) +socket = /tmp/uwsgi.sock + +# with appropriate permissions - *may* be needed +chmod-socket = 664 + +# the base directory +chdir = /home/lxf/apps/luxagraf + +# django's wsgi file +module =config.wsgi + +# the virtualenv +home = /home/lxf/apps/luxagraf/venv + +buffer-size =32768 +plugin=python +limit-as = 2048 +# clear environment on exit +vacuum = true + |