Skip to content

Commit

Permalink
Updated the example config with api_addr parameter (hashicorp#19985)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhyakuna committed Apr 5, 2023
1 parent 31d7bd3 commit ac742be
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions website/content/docs/configuration/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,21 @@ The format of this file is [HCL](https://github.com/hashicorp/hcl) or JSON.

An example configuration is shown below:

```javascript
```hcl
ui = true
cluster_addr = "https://127.0.0.1:8201"
api_addr = "https://127.0.0.1:8200"
disable_mlock = true
storage "consul" {
address = "127.0.0.1:8500"
path = "vault/"
}
listener "tcp" {
address = "127.0.0.1:8200"
tls_disable = 1
address = "127.0.0.1:8200"
tls_cert_file = "/path/to/full-chain.pem"
tls_key_file = "/path/to/private-key.pem"
}
telemetry {
Expand Down

0 comments on commit ac742be

Please sign in to comment.