Files
fedora-infra_ansible/roles/fedocal/templates/fedocal.conf
2014-10-14 17:49:51 +02:00

24 lines
597 B
Plaintext

Alias /calendar/static /usr/lib/python2.7/site-packages/fedocal/static/default/
WSGIDaemonProcess fedocal user=apache maximum-requests=1000 display-name=fedocal processes=2 threads=1
WSGISocketPrefix run/wsgi
WSGIRestrictStdout On
WSGIRestrictSignal Off
WSGIPythonOptimize 1
WSGIScriptAlias /calendar /var/www/fedocal.wsgi
<Location />
WSGIProcessGroup fedocal
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order deny,allow
Allow from all
</IfModule>
</Location>