vault-bin/vault.hcl
2015-12-16 16:33:54 +01:00

18 lines
281 B
HCL

/*
* Vault configuration. See: https://vaultproject.io/docs/config/
*/
disable_mlock = true
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
}