blob: a5277e61d5b2751f26c11ca604994eb52d5fc185 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<VirtualHost *:80>
ServerName papillon.example.com
WSGIDaemonProcess ishtar processes=2 maximum-requests=500 threads=1
WSGIProcessGroup ishtar
WSGIScriptAlias / /var/local/django/papillon/apache/django.wsgi
ErrorLog ${APACHE_LOG_DIR}/papillon/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/papillon/access.log combined
</VirtualHost>
|