22 lines
379 B
HCL
22 lines
379 B
HCL
# OpenBao Server Configuration
|
|
# File storage backend for turnkey deployment
|
|
|
|
storage "file" {
|
|
path = "/openbao/data"
|
|
}
|
|
|
|
# HTTP API listener
|
|
listener "tcp" {
|
|
address = "0.0.0.0:8200"
|
|
tls_disable = 1
|
|
}
|
|
|
|
# API address for cluster communication
|
|
api_addr = "http://0.0.0.0:8200"
|
|
|
|
# UI enabled for debugging (disable in production)
|
|
ui = true
|
|
|
|
# Log level
|
|
log_level = "info"
|