]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
wsgi.conf: Fix the path in the Directory directive
authorDamien Lespiau <damien.lespiau@intel.com>
Fri, 9 Oct 2015 15:47:19 +0000 (16:47 +0100)
committerStephen Finucane <stephen.finucane@intel.com>
Mon, 26 Oct 2015 21:08:05 +0000 (21:08 +0000)
The path in <Directory> didn't match the one defined in Alias.

While at it, remove the unnecessary quotes.

Reported-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Acked-by: Stephen Finucane <stephen.finucane@intel.com>
lib/apache2/patchwork.wsgi.conf

index cce7e7ab1bf4f4fe87f41bf154cce2c119bcc8cf..52645bf9dfd5251e4826d78a7ae7ca2830cef1c3 100644 (file)
@@ -1,8 +1,8 @@
-Alias /static/ "/srv/patchwork/htdocs/static/"
-<Directory "/srv/patchwork/htdocs">
+Alias /static/ /srv/patchwork/htdocs/static/
+<Directory /srv/patchwork/htdocs/static>
        Order allow,deny
        Allow from all
 </Directory>
 
-WSGIScriptAlias / "/srv/patchwork/lib/apache2/patchwork.wsgi"
+WSGIScriptAlias / /srv/patchwork/lib/apache2/patchwork.wsgi
 WSGIPassAuthorization On