Initial code commit
This commit is contained in:
parent
cf72c0fd43
commit
75d003a3be
12 changed files with 1203 additions and 0 deletions
25
vault-config.hcl
Normal file
25
vault-config.hcl
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Storage backend
|
||||
#storage "file" {
|
||||
# path = "/vault/data"
|
||||
#}
|
||||
|
||||
ui = true
|
||||
|
||||
# HTTP listener with TLS
|
||||
listener "tcp" {
|
||||
address = "0.0.0.0:8200"
|
||||
tls_disable = 1
|
||||
}
|
||||
|
||||
# Disabled Memory Lock
|
||||
disable_mlock = true
|
||||
|
||||
# API Address
|
||||
api_addr = "http://localhost:8200"
|
||||
|
||||
storage "raft" {
|
||||
path = "/vault/data"
|
||||
}
|
||||
|
||||
# Cluster address (optional, can be same as api_addr if not using clustering)
|
||||
cluster_addr = "http://localhost:8201"
|
||||
Loading…
Add table
Add a link
Reference in a new issue