AriStockAI/consul/config/emotion-service.json
fanfpy 302fbbc11b refactor(consul): 将服务配置中的meta字段迁移为tags格式
统一将Consul服务配置中的traefik相关元数据从meta字段迁移到tags数组格式
新增entrypoints配置以明确指定web入口点
2025-07-01 17:00:31 +08:00

18 lines
453 B
JSON

{
"service": {
"address": "emotion-service",
"check": {
"http": "http://emotion-service:8002/health",
"interval": "10s",
"timeout": "5s"
},
"id": "emotion-service-1",
"tags": [
"traefik.enable=true",
"traefik.http.routers.emotion-service.rule=PathPrefix('/api/emotion')",
"traefik.http.routers.emotion-service.entrypoints=web"
],
"name": "emotion-service",
"port": 8002
}
}