From fea3749a9365a0fd378706b16ddd98ad134b754b Mon Sep 17 00:00:00 2001 From: acidburns Date: Tue, 17 Feb 2026 00:39:44 +0100 Subject: [PATCH] Require AP web authentication by default --- include/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/config.h b/include/config.h index 22fcb51..1fc2aac 100644 --- a/include/config.h +++ b/include/config.h @@ -83,7 +83,7 @@ constexpr const char *TIMEZONE_TZ = "CET-1CEST,M3.5.0/2,M10.5.0/3"; constexpr const char *AP_SSID_PREFIX = "DD3-Bridge-"; constexpr const char *AP_PASSWORD = "changeme123"; constexpr bool WEB_AUTH_REQUIRE_STA = true; -constexpr bool WEB_AUTH_REQUIRE_AP = false; +constexpr bool WEB_AUTH_REQUIRE_AP = true; constexpr const char *WEB_AUTH_DEFAULT_USER = "admin"; constexpr const char *WEB_AUTH_DEFAULT_PASS = "admin";