Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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).
}
```

Expand All @@ -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).
}
```

Expand Down
Loading