changes in api routes, ihave created almost functional settings form
This commit is contained in:
16
readme.md
16
readme.md
@@ -1,5 +1,21 @@
|
||||
# Vault setup
|
||||
|
||||
For proper connection from Docker/Podman containers, use this vault configuration and bind Vault interface to 0.0.0.0.
|
||||
|
||||
```hcl
|
||||
storage "file" {
|
||||
path = "/opt/vault/data"
|
||||
}
|
||||
|
||||
listener "tcp" {
|
||||
address = "0.0.0.0:8200"
|
||||
tls_disable = 1
|
||||
}
|
||||
|
||||
disable_mlock = true
|
||||
ui = true
|
||||
```
|
||||
|
||||
```bash
|
||||
export VAULT_ADDR=http://localhost:8200
|
||||
export VAULT_TOKEN=root
|
||||
|
||||
Reference in New Issue
Block a user