From 3f2a46e6420723e7f4622d977c340edea0f57071 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 8 Apr 2014 17:24:31 +0200 Subject: [PATCH] Fix link the wsgi in the apache config --- roles/elections/templates/fedora-elections.conf | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/roles/elections/templates/fedora-elections.conf b/roles/elections/templates/fedora-elections.conf index bb82e10c0b..54cadd15fb 100644 --- a/roles/elections/templates/fedora-elections.conf +++ b/roles/elections/templates/fedora-elections.conf @@ -6,9 +6,18 @@ WSGIRestrictStdout On WSGIRestrictSignal Off WSGIPythonOptimize 1 -WSGIScriptAlias /voting /var/www/elections.wsgi +WSGIScriptAlias /voting /var/www/fedora-elections.wsgi WSGIProcessGroup elections + + # Apache 2.4 + Require all granted + + + # Apache 2.2 + Order deny,allow + Allow from all +