From 7635e4258cf8461fd7aa6fa4246e06de3ebe458a Mon Sep 17 00:00:00 2001 From: Victor Kislov Date: Mon, 16 Oct 2023 18:24:40 +0300 Subject: [PATCH] Basic Authentication - Accept special characters in username and password configuration setting, matching the USERNAME and PASSWORD regexp constants respectively. --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index 01162e6..4b5f33a 100644 --- a/src/conf.c +++ b/src/conf.c @@ -225,7 +225,7 @@ struct { handle_deny), STDCONF (bind, "(" IP "|" IPV6 ")", handle_bind), /* other */ - STDCONF (basicauth, ALNUM WS ALNUM, handle_basicauth), + STDCONF (basicauth, USERNAME WS PASSWORD, handle_basicauth), STDCONF (errorfile, INT WS STR, handle_errorfile), STDCONF (addheader, STR WS STR, handle_addheader),