From 39f20f641e69c2f8cc28f4e996e18c5a2baf69c5 Mon Sep 17 00:00:00 2001 From: Hans Nieser Date: Fri, 25 Jul 2025 14:35:49 +0200 Subject: [PATCH] Update basic-authentication-on-hypernode-development-plans.md --- .../basic-authentication-on-hypernode-development-plans.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/hypernode-platform/nginx/basic-authentication-on-hypernode-development-plans.md b/docs/hypernode-platform/nginx/basic-authentication-on-hypernode-development-plans.md index cc9031f7..aa74ca33 100644 --- a/docs/hypernode-platform/nginx/basic-authentication-on-hypernode-development-plans.md +++ b/docs/hypernode-platform/nginx/basic-authentication-on-hypernode-development-plans.md @@ -64,7 +64,8 @@ To disable the basic authentication on our development plans add the following l geo $development_exceptions { default "Development restricted area"; # 1.2.3.4/32 "off"; # disables basic auth for 1.2.3.4/32 - 0.0.0.0/0 "off"; # Everything is allowed. + 0.0.0.0/0 "off"; # Everything is allowed (IPv4). + ::/0 "off"; # Everything is allowed (IPv6, may be needed when using Cloudflare). } ``` @@ -81,7 +82,8 @@ First, disable the following nginx configuration: geo $development_exceptions { default "Development restricted area"; # 1.2.3.4/32 "off"; # disables basic auth for 1.2.3.4/32 - 0.0.0.0/0 "off"; # Everything is allowed. + 0.0.0.0/0 "off"; # Everything is allowed (IPv4). + ::/0 "off"; # Everything is allowed (IPv6, may be needed when using Cloudflare). } ```