Files
fedora-infra_ansible/roles/testdays/templates/testdays.conf.j2
2015-09-10 01:39:24 +00:00

19 lines
495 B
Django/Jinja

WSGIDaemonProcess testdays user=apache group=apache threads=5
WSGIScriptAlias /{{ testdays_endpoint }} /usr/share/testdays/testdays.wsgi
WSGISocketPrefix run/wsgi
<Directory /usr/share/testdays>
WSGIProcessGroup testdays
WSGIApplicationGroup %{GLOBAL}
WSGIScriptReloading On
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_auth_core.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>