[PATCH] wsgi.conf: Fix the path in the Directory directive

Damien Lespiau damien.lespiau at intel.com
Sat Oct 10 02:47:19 AEDT 2015


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 at intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
---
 lib/apache2/patchwork.wsgi.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/apache2/patchwork.wsgi.conf b/lib/apache2/patchwork.wsgi.conf
index cce7e7a..52645bf 100644
--- a/lib/apache2/patchwork.wsgi.conf
+++ b/lib/apache2/patchwork.wsgi.conf
@@ -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
-- 
2.1.0



More information about the Patchwork mailing list