diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-09-09 13:05:51 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-09-09 13:11:12 +1000 |
commit | f0d09c7ad846a02c4d5d99bfe412b0ba35164150 (patch) | |
tree | 1125baf6ede8679755361adad465d7bb39a15fdf /lib | |
parent | 13f4232358785f4ca89ce1c4605a4b01db1940ef (diff) | |
download | patchwork-f0d09c7ad846a02c4d5d99bfe412b0ba35164150.tar patchwork-f0d09c7ad846a02c4d5d99bfe412b0ba35164150.tar.gz |
Pass Authorization headers in fastcgi application
By default, mod_fcgi doens't allow the Authorization header, so
enable -pass-header, and handle the different header name in the
xmlrpc view
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/apache2/patchwork.fastcgi.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/apache2/patchwork.fastcgi.conf b/lib/apache2/patchwork.fastcgi.conf index 78d8147..a739164 100644 --- a/lib/apache2/patchwork.fastcgi.conf +++ b/lib/apache2/patchwork.fastcgi.conf @@ -4,7 +4,7 @@ NameVirtualHost patchwork.example.com:80 Alias /media/ /srv/patchwork/lib/python/django/contrib/admin/media/ - FastCGIExternalServer /srv/patchwork/htdocs/patchwork.fcgi -socket /srv/patchwork/var/fcgi.sock + FastCGIExternalServer /srv/patchwork/htdocs/patchwork.fcgi -socket /srv/patchwork/var/fcgi.sock -pass-header Authorization RewriteEngine On RewriteCond %{REQUEST_URI} !^/(images|css|js|media)/.* |