19 lines
376 B
YAML
19 lines
376 B
YAML
x-http-endpoint: &default-http
|
|
group: http
|
|
interval: 10m
|
|
conditions: &default-http-conditions
|
|
- "[STATUS] == 200"
|
|
|
|
endpoints:
|
|
- name: proxy
|
|
<<: *default-http
|
|
group: core
|
|
url: "http://proxy"
|
|
conditions:
|
|
- "[STATUS] == 503" # as there is no service hosted @ "proxy"
|
|
|
|
- name: ntfy
|
|
<<: *default-http
|
|
group: core
|
|
url: "http://ntfy"
|
|
|