AriStockAI/consul/config/emotion-service.json
fanfpy 3ced301ee1 refactor(traefik): 移除API路径前缀并统一服务路由路径
将Traefik的API自定义路径前缀移除,并统一各服务的路由路径格式,从`/api/service`改为`/api-service`,提高路径一致性
2025-07-02 10:47:22 +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
}
}