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

17 lines
388 B
HCL

service {
name = "data-service"
id = "data-service-1"
address = "data-service"
port = 8000
check {
http = "http://aktools:8080/quote_zh_a_hist?symbol=sh600000&period=daily&start_date=20220101&end_date=20220102"
interval = "10s"
timeout = "5s"
}
meta = {
traefik_enable = "true"
traefik_http_routers_data_service_rule = "PathPrefix(`/api/data`)"
}
}