AriStockAI/consul/config/frontend.json
fanfpy e8fac3b536 refactor(consul): 将服务配置从hcl迁移至json格式
迁移所有Consul服务配置从HCL格式到JSON格式,以统一配置管理方式
更新traefik配置以支持Consul服务发现
添加whoami服务用于测试
2025-06-30 17:06:54 +08:00

17 lines
333 B
JSON

{
"service": {
"address": "frontend",
"check": {
"http": "http://frontend:80/",
"interval": "10s",
"timeout": "5s"
},
"id": "frontend-1",
"meta": {
"traefik_enable": "true",
"traefik_http_routers_frontend_rule": "PathPrefix(`/`)"
},
"name": "frontend",
"port": 80
}
}