summaryrefslogtreecommitdiff
path: root/apache/apache-wsgi.conf
blob: 16a893cdf285908229e57c99c2c3d4c828515fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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"
  <Directory "/usr/share/tinymce/www/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
  </Directory>

  ErrorLog ${APACHE_LOG_DIR}/chimere/error.log
  LogLevel warn
  CustomLog ${APACHE_LOG_DIR}/chimere/access.log combined

</VirtualHost>