Fix link the wsgi in the apache config
This commit is contained in:
parent
65e504604d
commit
3f2a46e642
1 changed files with 10 additions and 1 deletions
|
@ -6,9 +6,18 @@ WSGIRestrictStdout On
|
||||||
WSGIRestrictSignal Off
|
WSGIRestrictSignal Off
|
||||||
WSGIPythonOptimize 1
|
WSGIPythonOptimize 1
|
||||||
|
|
||||||
WSGIScriptAlias /voting /var/www/elections.wsgi
|
WSGIScriptAlias /voting /var/www/fedora-elections.wsgi
|
||||||
|
|
||||||
<Location />
|
<Location />
|
||||||
WSGIProcessGroup elections
|
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>
|
</Location>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue