-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support digest authentication as reverse proxy #18
Comments
Have you tried setting:
I don't have a setup to test this but I think it should work. |
The goal is to use nginx reverse proxy to strip HTTP authentication requested by origin, so client does not need to perform HTTP authentication. |
You want nginx to fill in the correct |
Yeah basically have digest auth work in the opposite direction (nginx as auth client, reads credentials from local file and answer challenges from origin) |
I don't think that's ever possible with nginx. The problem is that it usually requires 2 requests for digest auth. One to get the server nonce as response and the next request with the correct |
Support digest authentication to origin when used with
proxy_pass
Currently nginx reverse proxy only supports basic authentication with
proxy_set_header Authorization
The text was updated successfully, but these errors were encountered: