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 @@ -74,31 +74,29 @@ To set up your other NGINX instances to use the proxy instance to connect to NGI
{{%tab name="NGINX Agent 3.x"%}}
```yaml
command:
server:
# Replace YOUR_PROXY_IP_ADDRESS_HERE with the IP address of the NGINX proxy instance.
host: YOUR_PROXY_IP_ADDRESS_HERE
port: 5000
auth:
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Console data plane key.
token: "YOUR_DATA_PLANE_KEY_HERE"
tls:
skip_verify: False
server_name: "agent.connect.nginx.com"
command:
server:
# Replace YOUR_PROXY_IP_ADDRESS_HERE with the IP address of the NGINX proxy instance.
host: YOUR_PROXY_IP_ADDRESS_HERE
port: 5000
auth:
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Console data plane key.
token: "YOUR_DATA_PLANE_KEY_HERE"
tls:
skip_verify: False
```

{{%/tab%}}
{{%tab name="NGINX Agent 2.x"%}}
```yaml
command:
server:
server:
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Data Plane Key.
token: "YOUR_DATA_PLANE_KEY_HERE"
# Replace YOUR_PROXY_IP_ADDRESS_HERE with the IP address of the NGINX proxy instance.
host: YOUR_PROXY_IP_ADDRESS_HERE
port: 443
auth:
# Replace YOUR_DATA_PLANE_KEY_HERE with your NGINX One Console data plane key.
token: "YOUR_DATA_PLANE_KEY_HERE"
tls:
grpcPort: 5000
tls:
enable: True
skip_verify: False
```
{{%/tab%}}
Expand Down
Loading