Skip to content

Commit

Permalink
wsgi.conf: Fix the path in the Directory directive
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Damien Lespiau committed Oct 21, 2015
1 parent 133e21a commit 1aa549f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/apache2/patchwork.wsgi.conf
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1aa549f

Please sign in to comment.