From: Damien Lespiau Date: Fri, 9 Oct 2015 15:47:19 +0000 (+0100) Subject: wsgi.conf: Fix the path in the Directory directive X-Git-Tag: v1.1.0~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7823bf526882b579098cce727a35d7ced3292b9b;p=thirdparty%2Fpatchwork.git wsgi.conf: Fix the path in the Directory directive The path in didn't match the one defined in Alias. While at it, remove the unnecessary quotes. Reported-by: Michael Wood Signed-off-by: Damien Lespiau Acked-by: Stephen Finucane --- diff --git a/lib/apache2/patchwork.wsgi.conf b/lib/apache2/patchwork.wsgi.conf index cce7e7ab..52645bf9 100644 --- a/lib/apache2/patchwork.wsgi.conf +++ b/lib/apache2/patchwork.wsgi.conf @@ -1,8 +1,8 @@ -Alias /static/ "/srv/patchwork/htdocs/static/" - +Alias /static/ /srv/patchwork/htdocs/static/ + Order allow,deny Allow from all -WSGIScriptAlias / "/srv/patchwork/lib/apache2/patchwork.wsgi" +WSGIScriptAlias / /srv/patchwork/lib/apache2/patchwork.wsgi WSGIPassAuthorization On