Files
fedora-infra_ansible/roles/anitya/frontend/templates/anitya.conf
2014-12-18 12:33:29 +01:00

24 lines
567 B
Plaintext

Alias /static /usr/lib/python2.7/site-packages/anitya/static/
WSGIDaemonProcess anitya user=apache maximum-requests=1000 display-name=anitya processes=4 threads=4
WSGISocketPrefix run/wsgi
WSGIRestrictStdout On
WSGIRestrictSignal Off
WSGIPythonOptimize 1
WSGIScriptAlias / /var/www/anitya.wsgi
<Location />
WSGIProcessGroup anitya
<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>