summaryrefslogtreecommitdiff
path: root/apache/apache-wsgi-pip.conf
blob: df690d25590c38278ec6c2f5239347c9edc531e9 (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/apache/mydjango.wsgi
  Alias /static  "/var/local/chimere/mychimere_project/static"
  Alias /admin/doc  "/var/local/chimere/docs/_build/html/"

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

</VirtualHost>