AriStockAI/consul/config/data-service.json
fanfpy 2ba55b4dae fix: 将Traefik路由规则中的单引号替换为反引号
统一所有服务配置文件中Traefik路由规则的路径前缀引号格式,从单引号改为反引号以保持一致性
2025-07-01 17:04:46 +08:00

18 lines
471 B
JSON

{
"service": {
"address": "data-service",
"check": {
"http": "http://ari-data-service:8000/api/public/stock_bid_ask_em?symbol=000001",
"interval": "10s",
"timeout": "5s"
},
"id": "data-service-1",
"tags": [
"traefik.enable=true",
"traefik.http.routers.data-service.rule=PathPrefix(`/api/data`)",
"traefik.http.routers.data-service.entrypoints=web"
],
"name": "data-service",
"port": 8000
}
}