17 lines
279 B
HCL
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(`/`)"
|
|
}
|
|
} |