blob: 57bd4383db8cc04d2e77a680413e31d76f123228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<VirtualHost *:80>
ServerName chimere.example.com
WSGIDaemonProcess chimere processes=2 maximum-requests=500 threads=1
WSGIProcessGroup chimere
WSGIScriptAlias / /var/local/chimere/chimere/apache/django.wsgi
Alias /static "/var/local/chimere/chimere/static"
Alias /tinymce "/usr/share/tinymce/www"
ErrorLog ${APACHE_LOG_DIR}/chimere/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/chimere/access.log combined
</VirtualHost>
|