AriStockAI/consul/config/quant-service.json
fanfpy 6ecb0603bb fix(traefik/consul): 统一路径规则语法并更新API路径前缀配置
将Traefik路由规则中的路径语法从反引号(`)改为双引号(")以保持一致性
同时将traefik.yml中的pathPrefix改为pathPrefixes以支持数组格式
2025-07-02 17:37:18 +08:00

18 lines
441 B
JSON

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