You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Martin Koerner <ma...@gmx.de> on 2010/05/31 14:06:18 UTC

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

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@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org