diff --git a/proxy/README.md b/proxy/README.md index e458c34b0..6af7cadd2 100644 --- a/proxy/README.md +++ b/proxy/README.md @@ -70,7 +70,7 @@ The following deployment configuration is available: | `-mgmt` | `NB_PROXY_MANAGEMENT_ADDRESS` | The address of the management server for the proxy to get configuration from. | `"https://api.netbird.io:443"` | | `-addr` | `NB_PROXY_ADDRESS` | The address that the reverse proxy will listen on. | `":443` | | `-url` | `NB_PROXY_URL` | The URL that the proxy will be reached at (where endpoints will be CNAMEd to). If unset, this will fall back to the proxy address. | `"proxy.netbird.io"` | -| `-cert-dir` | `NB_PROXY_CERTIFICATE_DIRECTORY` | The location that certficates are stored in. | `"./certs"` | +| `-cert-dir` | `NB_PROXY_CERTIFICATE_DIRECTORY` | The location that certificates are stored in. | `"./certs"` | | `-acme-certs` | `NB_PROXY_ACME_CERTIFICATES` | Whether to use ACME to generate certificates. | `false` | | `-acme-addr` | `NB_PROXY_ACME_ADDRESS` | The HTTP address the proxy will listen on to respond to HTTP-01 ACME challenges | `":80"` | | `-acme-dir` | `NB_PROXY_ACME_DIRECTORY` | The directory URL of the ACME server to be used | `"https://acme-v02.api.letsencrypt.org/directory"` | diff --git a/proxy/internal/proxy/trustedproxy_test.go b/proxy/internal/proxy/trustedproxy_test.go index 4c8eb15a6..827b7babf 100644 --- a/proxy/internal/proxy/trustedproxy_test.go +++ b/proxy/internal/proxy/trustedproxy_test.go @@ -25,7 +25,7 @@ func TestIsTrustedProxy(t *testing.T) { {"IP within /24 prefix", "192.168.1.100", trusted, true}, {"IP outside all prefixes", "203.0.113.50", trusted, false}, {"boundary IP just outside prefix", "192.168.2.1", trusted, false}, - {"unparseable IP", "not-an-ip", trusted, false}, + {"unparsable IP", "not-an-ip", trusted, false}, {"IPv6 in trusted range", "fd00::1", trusted, true}, {"IPv6 outside range", "2001:db8::1", trusted, false}, {"empty string", "", trusted, false},