snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit b150bfe5caed8ce3a07059ef53fce0dfb1c8eda6
parent 1a9bb5fd076a78bd336fc65aac6ee01f468eb4bd
Author: grunfink <grunfink@noreply.codeberg.org>
Date:   Sun, 14 Apr 2024 11:05:10 +0000

Merge pull request 'Prevent some browsers from caching servers basic auth request' (#159) from louis77/snac2:master into master

Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/159

Diffstat:
Mhttpd.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/httpd.c b/httpd.c @@ -388,6 +388,7 @@ void httpd_connection(FILE *f) body, xs_dict_get(srv_config, "host")); headers = xs_dict_append(headers, "WWW-Authenticate", www_auth); + headers = xs_dict_append(headers, "Cache-Control", "no-cache, must-revalidate, max-age=0"); } if (ctype == NULL)