Files
Turbine/pkg/config/settings.toml
2025-12-13 16:16:15 +08:00

13 lines
394 B
TOML

# The address the config service will listen on
listen = ":8081"
# The host address to register with etcd.
# This should be the address that other services can use to reach this service.
# For local testing, 127.0.0.1 is fine. In production, this should be a reachable IP.
host = "127.0.0.1"
# ETCD configuration for service registration
[etcd]
endpoints = ["127.0.0.1:2379"]
insecure = true