Skip to content

Commit 54384c8

Browse files
committed
Add small feedback and use document address blocks
1 parent 5907e8e commit 54384c8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

content/ngf/how-to/monitoring/dashboard.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ The dashboard will look like this:
3333

3434
### Configure dashboard access through NginxProxy
3535

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.
3838

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`:
4141

4242
```yaml
4343
apiVersion: gateway.nginx.org/v1alpha1
@@ -48,12 +48,12 @@ spec:
4848
nginxPlus:
4949
allowedAddresses:
5050
- type: IPAddress
51-
value: 127.0.0.3
51+
value: 192.0.2.8
5252
- type: IPAddress
53-
value: 25.0.0.3
53+
value: 192.0.2.0
5454
- type: CIDR
55-
value: 27.0.0.1/32
55+
value: 198.51.100.0/24
5656
```
5757

5858
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

Comments
 (0)