Skip to content

Commit f88fb2e

Browse files
authored
Merge pull request #386 from hnsr/patch-1
Add docs on whitelisting everything when using IPv6 (Cloudflare)
2 parents 9e9b8af + 39f20f6 commit f88fb2e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/hypernode-platform/nginx/basic-authentication-on-hypernode-development-plans.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ To disable the basic authentication on our development plans add the following l
6464
geo $development_exceptions {
6565
default "Development restricted area";
6666
# 1.2.3.4/32 "off"; # disables basic auth for 1.2.3.4/32
67-
0.0.0.0/0 "off"; # Everything is allowed.
67+
0.0.0.0/0 "off"; # Everything is allowed (IPv4).
68+
::/0 "off"; # Everything is allowed (IPv6, may be needed when using Cloudflare).
6869
}
6970
```
7071

@@ -81,7 +82,8 @@ First, disable the following nginx configuration:
8182
geo $development_exceptions {
8283
default "Development restricted area";
8384
# 1.2.3.4/32 "off"; # disables basic auth for 1.2.3.4/32
84-
0.0.0.0/0 "off"; # Everything is allowed.
85+
0.0.0.0/0 "off"; # Everything is allowed (IPv4).
86+
::/0 "off"; # Everything is allowed (IPv6, may be needed when using Cloudflare).
8587
}
8688
```
8789

0 commit comments

Comments
 (0)