mirror of
https://github.com/luzifer-aur/vault-bin.git
synced 2024-11-09 14:10:02 +00: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
|
|
}
|