mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
15 lines
259 B
HCL
15 lines
259 B
HCL
/*
|
|
* Vault configuration. See: https://vaultproject.io/docs/config/
|
|
*/
|
|
|
|
backend "file" {
|
|
path = "/var/lib/vault"
|
|
}
|
|
|
|
listener "tcp" {
|
|
/*
|
|
* By default Vault listens on localhost only.
|
|
* Make sure to enable TLS support otherwise.
|
|
*/
|
|
tls_disable = 1
|
|
}
|