mirror of https://github.com/status-im/consul.git
Fix the server/client typo in the Agent docs (#21675)
This commit is contained in:
parent
3e6f1c1fe1
commit
e4d4435099
|
@ -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…
Reference in New Issue