[users@httpd] Re: REMOTE_USER is not available at the time of external function call in httpd RewriteMap

2018-10-01 Thread Chudamani Padhan
Got one solution to set basic authorization header for REMOTE_USER using AuthBasicFake (as I was mainly looking for User, not password). AuthBasicFake %{REMOTE_USER} Thanks, Chudamani On Thu, Sep 20, 2018 at 5:11 PM Chudamani Padhan wrote: > Hi, > I am trying to set HTTP basic auth

[users@httpd] REMOTE_USER is not available at the time of external function call in httpd RewriteMap

2018-09-20 Thread Chudamani Padhan
Hi, I am trying to set HTTP basic auth header for an user which is already authenticated by external application. For doing that, we have to set base64 encoded of "username:dummy" where password is any dummy value. In ssl config, REMOTE_USER is getting captured properly in RequestHeader(Line 5)