You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/ngf/how-to/monitoring/dashboard.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,11 @@ The dashboard will look like this:
33
33
34
34
### Configure dashboard access through NginxProxy
35
35
36
-
To allow access to the Nginx Plus dashboard from different sources than the default `127.0.0.1`, we can use the NginxProxy resource
37
-
to allow access to other IPAddresses or CIDR blocks.
36
+
To allow access to the NGINX Plus dashboard from different sources than the default `127.0.0.1`, we can use the NginxProxy resource
37
+
to allow access to other IP Addresses or CIDR blocks.
38
38
39
-
The following NginxProxy configuration allows access to the Nginx Plus dashboard from the IPAddresses `127.0.0.3` and
40
-
`25.0.0.3` and the CIDR block `27.0.0.1/32`:
39
+
The following NginxProxy configuration allows access to the NGINX Plus dashboard from the IP Addresses `192.0.2.8` and
40
+
`192.0.2.0` and the CIDR block `198.51.100.0/24`:
41
41
42
42
```yaml
43
43
apiVersion: gateway.nginx.org/v1alpha1
@@ -48,12 +48,12 @@ spec:
48
48
nginxPlus:
49
49
allowedAddresses:
50
50
- type: IPAddress
51
-
value: 127.0.0.3
51
+
value: 192.0.2.8
52
52
- type: IPAddress
53
-
value: 25.0.0.3
53
+
value: 192.0.2.0
54
54
- type: CIDR
55
-
value: 27.0.0.1/32
55
+
value: 198.51.100.0/24
56
56
```
57
57
58
58
For more information on configuring the NginxProxy resource, visit our [data plane configuration]({{< ref "data-plane-configuration.md">}}) document
59
-
which explains how to either configure an NginxProxy resource on install, manually create an NginxProxy resource, or edit an existing NginxProxy resource.
59
+
which explains how to either configure an NginxProxy resource on installation, manually create an NginxProxy resource, or edit an existing NginxProxy resource.
0 commit comments