Files
stack/docker/openbao/config.hcl
Jason Woltje 7c7ad59002
All checks were successful
ci/woodpecker/push/infra Pipeline was successful
Remove extra docker-compose and .env.exmple files.
2026-02-16 22:08:02 -06:00

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"