diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-08-25 17:44:53 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-08-25 17:44:53 +0200 |
commit | 9eeb65f8174cbf4881b858bbcf6c5599d0ca989f (patch) | |
tree | 58ae83a254290156b19450785b795c81825b521f /docs/conf/apache-wsgi.conf | |
parent | 6aa00adfac33c9b21208332bd1e29df9d5882f3e (diff) | |
download | Ishtar-9eeb65f8174cbf4881b858bbcf6c5599d0ca989f.tar.bz2 Ishtar-9eeb65f8174cbf4881b858bbcf6c5599d0ca989f.zip |
Add wsgi conf files
Diffstat (limited to 'docs/conf/apache-wsgi.conf')
-rw-r--r-- | docs/conf/apache-wsgi.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/conf/apache-wsgi.conf b/docs/conf/apache-wsgi.conf new file mode 100644 index 000000000..d1d6672e2 --- /dev/null +++ b/docs/conf/apache-wsgi.conf @@ -0,0 +1,11 @@ +<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> |