mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
https://www.vaultproject.io Vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, certificates, and more. Vault provides a unified interface to any secret, while providing tight access control and recording a detailed audit log.
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
|
|
}
|