AriStockAI/consul/config/emotion-service.hcl
fanfpy 75e10f5324 refactor(consul): 统一Traefik元数据键名格式
将Traefik相关的元数据键名从点分隔符改为下划线分隔符,提高配置一致性
2025-06-22 23:37:58 +08:00

17 lines
335 B
HCL

service {
name = "emotion-service"
id = "emotion-service-1"
address = "emotion-service"
port = 8002
check {
http = "http://emotion-service:8002/health"
interval = "10s"
timeout = "5s"
}
meta = {
traefik_enable = "true"
traefik_http_routers_emotion_service_rule = "PathPrefix(`/api/emotion`)"
}
}