1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/vault/vault.hcl
2019-03-23 16:28:31 +00:00

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
}