Rob Mueller
Rob Mueller
Currently sysflags and oldflags are logged as decimal, which makes them really hard to glace in the logs. e.g. sysflags= If this was logged as hex instead, it would be...
In `ngx_http_lua_headers_out.c` the 'WWW-Authenticate' header handler is set to `ngx_http_set_builtin_header`: ``` { ngx_string("WWW-Authenticate"), offsetof(ngx_http_headers_out_t, www_authenticate), ngx_http_set_builtin_header }, ``` But from the RFC https://datatracker.ietf.org/doc/html/rfc7235#section-4.1: > User agents are advised to take...