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

17 lines
377 B
JSON

{
"service": {
"address": "quant-service",
"check": {
"http": "http://quant-service:8001/health",
"interval": "10s",
"timeout": "5s"
},
"id": "quant-service-1",
"meta": {
"traefik_enable": "true",
"traefik_http_routers_quant_service_rule": "PathPrefix(`/api/quant`)"
},
"name": "quant-service",
"port": 8001
}
}