AriStockAI/consul/config/data-service.json
fanfpy e8fac3b536 refactor(consul): 将服务配置从hcl迁移至json格式
迁移所有Consul服务配置从HCL格式到JSON格式,以统一配置管理方式
更新traefik配置以支持Consul服务发现
添加whoami服务用于测试
2025-06-30 17:06:54 +08:00

17 lines
401 B
JSON

{
"service": {
"address": "data-service",
"check": {
"http": "http://aktools:8080/api/public/stock_bid_ask_em?symbol=000001",
"interval": "10s",
"timeout": "5s"
},
"id": "data-service-1",
"meta": {
"traefik_enable": "true",
"traefik_http_routers_data_service_rule": "PathPrefix(`/api/data`)"
},
"name": "data-service",
"port": 8000
}
}