AriStockAI/consul/config/frontend.hcl
fanfpy 75e10f5324 refactor(consul): 统一Traefik元数据键名格式
将Traefik相关的元数据键名从点分隔符改为下划线分隔符,提高配置一致性
2025-06-22 23:37:58 +08:00

17 lines
279 B
HCL

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