Fix link the wsgi in the apache config

This commit is contained in:
Pierre-Yves Chibon 2014-04-08 17:24:31 +02:00
parent 65e504604d
commit 3f2a46e642

View file

@ -6,9 +6,18 @@ WSGIRestrictStdout On
WSGIRestrictSignal Off
WSGIPythonOptimize 1
WSGIScriptAlias /voting /var/www/elections.wsgi
WSGIScriptAlias /voting /var/www/fedora-elections.wsgi
<Location />
WSGIProcessGroup elections
<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>