From 3a089d5c94eed33e56e089666dfc07f8127b537c Mon Sep 17 00:00:00 2001 From: Alex Jarmoszuk Date: Fri, 12 Apr 2024 20:52:49 +0200 Subject: [PATCH] Change to titles and verification messages --- ngx_http_js_challenge.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ngx_http_js_challenge.c b/ngx_http_js_challenge.c index d7c6716..8e47f66 100644 --- a/ngx_http_js_challenge.c +++ b/ngx_http_js_challenge.c @@ -36,7 +36,7 @@ "" -#define DEFAULT_TITLE "Verifying your browser..." +#define DEFAULT_TITLE "Browser Verification" static int is_private_ip(const char *ip) { struct in_addr addr; @@ -258,7 +258,7 @@ int serve_challenge(ngx_http_request_t *r, const char *challenge, const char *ht static const ngx_str_t content_type = ngx_string("text/html;charset=utf-8"); if (html == NULL) { - html = "

Please wait...

"; + html = "

Your connection is being verified. Please wait...

"; } size_t size = snprintf((char *) buf, sizeof(buf), JS_SOLVER_TEMPLATE, title_c_str, challenge_c_str, html);