Browse Source

Fix the server/client typo in the Agent docs (#21675)

pull/21705/head
Brian Mathiyakom 3 months ago committed by GitHub
parent
commit
e4d4435099
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      website/content/docs/agent/index.mdx

8
website/content/docs/agent/index.mdx

@ -382,8 +382,8 @@ The `client_addr` configuration specifies IP addresses used for HTTP, HTTPS, DNS
<CodeTabs>
```hcl
node_name = "consul-server"
server = true
node_name = "consul-client"
server = false
bootstrap = true
ui_config {
enabled = true
@ -405,8 +405,8 @@ advertise_addr = "{{ GetInterfaceIP \"en0\" }}"
```json
{
"node_name": "consul-server",
"server": true,
"node_name": "consul-client",
"server": false,
"bootstrap": true,
"ui_config": {
"enabled": true

Loading…
Cancel
Save