Java Mailing List Archive

http://www.apache-httpd.com/

Home » users.httpd »

[users@httpd] Re: Inifite loop with mod_sspi,mod_proxy and mod_rewrite

Martin Koerner

2010-05-31


Author LoginPost Reply
Hi,

I had the same problem with mod_auth_kerb.

>      RewriteEngine On
>      RewriteCond %{LA-U:REMOTE_USER} (.+)
>      RewriteRule .* - [E=RU:%1]
>      RequestHeader set REMOTE_USER %{RU}e

My solution was to change the RewriteRule to:
 RewriteRule .* - [E=RU:%1,NS]

From Apache documentation: 'nosubreq|NS' (used only if no internal sub-request)
This flag forces the rewriting engine to skip a rewriting rule if the current
request is an internal sub-request

%{LA-U:REMOTE_USER} is doing such an internal sub-request. And with the NS-flag
it isn't be rewritten to it self again and again...

By,

Martin Koerner






---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@(protected)
 "  from the digest: users-digest-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)

©2008 apache-httpd.com - Jax Systems, LLC, U.S.A.