Prevent some browsers from caching servers basic auth request

This commit is contained in:
louis 2024-04-13 20:55:02 +02:00
parent 1a9bb5fd07
commit cf5718bf4d
1 changed files with 1 additions and 0 deletions

View File

@ -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)