Re: [us...@httpd] Using SetEnvIf on response headers

2009-07-09 Thread Ray Van Dolson
Thanks for the detailed reply Andre. On Thu, Jul 09, 2009 at 01:16:06AM -0700, André Warnier wrote: > Ray Van Dolson wrote: > > On Wed, Jul 08, 2009 at 03:35:58PM -0700, André Warnier wrote: > >> Ray Van Dolson wrote: > >>> Hi all; > >>> > >>> I'm trying to strip out NTLM as an authentication opti

Re: [us...@httpd] Using SetEnvIf on response headers

2009-07-09 Thread André Warnier
André Warnier wrote: Addendum to this : I had a quick browse through the standard Apache modules, and it seems that there is nothing that allows to test a /response/ header, and then do something about the response headers in general. I take it back. There seems to be something you can do, by

Re: [us...@httpd] Using SetEnvIf on response headers

2009-07-09 Thread André Warnier
Ray Van Dolson wrote: On Wed, Jul 08, 2009 at 03:35:58PM -0700, André Warnier wrote: Ray Van Dolson wrote: Hi all; I'm trying to strip out NTLM as an authentication option from response packets (my Apache is acting as a reverse proxy). By curiosity, what does this achieve ? If the origin serv

Re: [us...@httpd] Using SetEnvIf on response headers

2009-07-08 Thread Ray Van Dolson
On Wed, Jul 08, 2009 at 03:35:58PM -0700, André Warnier wrote: > Ray Van Dolson wrote: > > Hi all; > > > > I'm trying to strip out NTLM as an authentication option from response > > packets (my Apache is acting as a reverse proxy). > > By curiosity, what does this achieve ? > If the origin server

Re: [us...@httpd] Using SetEnvIf on response headers

2009-07-08 Thread André Warnier
Ray Van Dolson wrote: Hi all; I'm trying to strip out NTLM as an authentication option from response packets (my Apache is acting as a reverse proxy). By curiosity, what does this achieve ? If the origin server requires NTLM authentication for a resource, it is unlikely to be happy with a Bas

[us...@httpd] Using SetEnvIf on response headers

2009-07-08 Thread Ray Van Dolson
Hi all; I'm trying to strip out NTLM as an authentication option from response packets (my Apache is acting as a reverse proxy). At first I did this blindly with the Header command: Header always unset WWW-Authenticate Header always set WWW-Authenticate "Basic realm='%{SERVER_NAME}e'" Head