summaryrefslogtreecommitdiffstats
path: root/registry
diff options
context:
space:
mode:
authorJoel Hans <joel@netdata.cloud>2020-04-14 10:26:13 -0700
committerGitHub <noreply@github.com>2020-04-14 10:26:13 -0700
commite99692f145f710930723081d2e5bbf8868be2080 (patch)
tree468157463f0f133d927019e6826a9559dd989b9b /registry
parent59916b01b83026d6e6caf59f4efb67b7d428b70d (diff)
Docs: Standardize links between documentation (#8638)
* Trying out some absolute-ish links * Try one out on installer * Testing logic * Trying out some more links * Fixing links * Fix links in python collectors * Changed a bunch more links * Fix build errors * Another push of links * Fix build error and add more links * Complete first pass * Fix final broken links * Fix links to files * Fix for Netlify * Two more fixes
Diffstat (limited to 'registry')
-rw-r--r--registry/README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/registry/README.md b/registry/README.md
index 99ebb30ad1..9f7d3b9ede 100644
--- a/registry/README.md
+++ b/registry/README.md
@@ -147,9 +147,10 @@ Netdata v1.9+ support limiting access to the registry from given IPs, like this:
allow from = *
```
-`allow from` settings are [Netdata simple patterns](../libnetdata/simple_pattern/): string matches that use `*` as
-wildcard (any number of times) and a `!` prefix for a negative match. So: `allow from = !10.1.2.3 10.*` will allow all
-IPs in `10.*` except `10.1.2.3`. The order is important: left to right, the first positive or negative match is used.
+`allow from` settings are [Netdata simple patterns](/libnetdata/simple_pattern/README.md): string matches that use `*`
+as wildcard (any number of times) and a `!` prefix for a negative match. So: `allow from = !10.1.2.3 10.*` will allow
+all IPs in `10.*` except `10.1.2.3`. The order is important: left to right, the first positive or negative match is
+used.
Keep in mind that connections to Netdata API ports are filtered by `[web].allow connections from`. So, IPs allowed by
`[registry].allow from` should also be allowed by `[web].allow connection from`.