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

18 lines
390 B
JSON

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