You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
User agents are advised to take special care in parsing the field
value, as it might contain more than one challenge, and each
challenge can contain a comma-separated list of authentication
parameters. Furthermore, the header field itself can occur multiple
times.
In theory clients should support multiple challenges in a single header, but unfortunately we're seeing some clients that only work with multiple separate WWW-Authenticate headers.
The text was updated successfully, but these errors were encountered:
In
ngx_http_lua_headers_out.c
the 'WWW-Authenticate' header handler is set tongx_http_set_builtin_header
:But from the RFC https://datatracker.ietf.org/doc/html/rfc7235#section-4.1:
So I believe the above code should be:
In theory clients should support multiple challenges in a single header, but unfortunately we're seeing some clients that only work with multiple separate
WWW-Authenticate
headers.The text was updated successfully, but these errors were encountered: