vault-bin/vault.hcl

18 lines
281 B
HCL
Raw Permalink Normal View History

2015-07-31 12:57:51 +00:00
/*
* Vault configuration. See: https://vaultproject.io/docs/config/
*/
2015-12-16 15:33:54 +00:00
disable_mlock = true
2015-07-31 12:57:51 +00:00
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
}