mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-06-14 22:36:09 +08:00
19 lines
495 B
Django/Jinja
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>
|