diff options
author | francis <francis> | 2008-06-04 20:20:58 +0000 |
---|---|---|
committer | francis <francis> | 2008-06-04 20:20:58 +0000 |
commit | c24d954dd38dab68321f570bce31546570447f6e (patch) | |
tree | 9b3435910a19a682ceb6d6c3b9b0c36e2a42963e | |
parent | db34071cfb64ffb81b48322ee007c231a21ac46b (diff) |
Get right admin name.
-rw-r--r-- | config/httpd.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/httpd.conf b/config/httpd.conf index c8b6f95fc..902aa6935 100644 --- a/config/httpd.conf +++ b/config/httpd.conf @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org # -# $Id: httpd.conf,v 1.11 2008-06-04 18:29:02 francis Exp $ +# $Id: httpd.conf,v 1.12 2008-06-04 20:20:58 francis Exp $ # This is needed for the PHP spell checker <Location /fcgi> @@ -34,8 +34,8 @@ RewriteRule ^/(.*) http://localhost:3000/$1 [P] # ProxyPass / http://localhost:3000/ # Pass through the HTTP basic authentication to mongrel -# sigh - doesn't work in apache 1.3 -#RewriteCond %{LA-U:REMOTE_USER} (.+) -#RewriteRule . - [E=RU:%1] -#RequestHeader add X-Forwarded-User %{RU}e +# Note: Doesn't work in apache 1.3, remove it. +RewriteCond %{LA-U:REMOTE_USER} (.+) +RewriteRule . - [E=RU:%1] +RequestHeader add X-Forwarded-User %{RU}e |