summaryrefslogtreecommitdiff
path: root/docs/conf
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-10-12 01:14:15 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-10-12 01:14:15 +0200
commitec9b51faf1f50d3f3fe924942af50405714e71b3 (patch)
tree140a1f5792bbeefa1eab2db0f5d18ad1bf0c7a11 /docs/conf
parent00b98d5a9e259004af1d34dd93bac550736509fb (diff)
downloadIshtar-ec9b51faf1f50d3f3fe924942af50405714e71b3.tar.bz2
Ishtar-ec9b51faf1f50d3f3fe924942af50405714e71b3.zip
Documentation update
Diffstat (limited to 'docs/conf')
-rw-r--r--docs/conf/apache-wsgi.conf11
-rw-r--r--docs/conf/django.wsgi5
2 files changed, 0 insertions, 16 deletions
diff --git a/docs/conf/apache-wsgi.conf b/docs/conf/apache-wsgi.conf
deleted file mode 100644
index d1d6672e2..000000000
--- a/docs/conf/apache-wsgi.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-<VirtualHost *:80>
- ServerName ishtar.example.com
- WSGIDaemonProcess ishtar processes=2 maximum-requests=500 threads=1
- WSGIProcessGroup ishtar
- WSGIScriptAlias / /var/local/ishtar/ishtar/apache/django.wsgi
-
- ErrorLog ${APACHE_LOG_DIR}/ishtar/error.log
- LogLevel warn
- CustomLog ${APACHE_LOG_DIR}/ishtar/access.log combined
-
-</VirtualHost>
diff --git a/docs/conf/django.wsgi b/docs/conf/django.wsgi
deleted file mode 100644
index ca0a2e5ac..000000000
--- a/docs/conf/django.wsgi
+++ /dev/null
@@ -1,5 +0,0 @@
-import os, sys
-sys.path.append('/srv/ishtar/')
-os.environ['DJANGO_SETTINGS_MODULE'] = 'ishtar.settings'
-import django.core.handlers.wsgi
-application = django.core.handlers.wsgi.WSGIHandler()