Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pass user name password in apache proxy

Status
Not open for further replies.

elgo

Technical User
Jun 27, 2004
13
US

I have setup a proxy server, I want to create a user name password for a backend application to authenticate, but I don't want the browser to prompt instead the proxy should read from a file where I store username password, and if both match it pass through to the backend application.

I have already tried this solution, did not work.

<Location />
<Limit GET PUT POST>
AuthType Basic
AuthName test
AuthUserFile /<proxy-install-dir/passwd
Require user user
</Limit>
</Location>

Any idea how I can do that.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top