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

17 lines
389 B
JSON

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