mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-06 07:36:37 -03:00
28 lines
503 B
Text
28 lines
503 B
Text
|
# Full configuration options can be found at https://www.vaultproject.io/docs/configuration
|
||
|
|
||
|
ui = true
|
||
|
|
||
|
#mlock = true
|
||
|
disable_mlock = true
|
||
|
|
||
|
storage "file" {
|
||
|
path = "/opt/vault/data"
|
||
|
}
|
||
|
|
||
|
#storage "consul" {
|
||
|
# address = "127.0.0.1:8500"
|
||
|
# path = "vault"
|
||
|
#}
|
||
|
|
||
|
# HTTP listener
|
||
|
#listener "tcp" {
|
||
|
# address = "127.0.0.1:8200"
|
||
|
# tls_disable = 1
|
||
|
#}
|
||
|
|
||
|
# HTTPS listener
|
||
|
listener "tcp" {
|
||
|
address = "0.0.0.0:8200"
|
||
|
tls_cert_file = "/opt/vault/tls/tls.crt"
|
||
|
tls_key_file = "/opt/vault/tls/tls.key"
|
||
|
}
|