65 lines
1.1 KiB
YAML
65 lines
1.1 KiB
YAML
x-http-endpoint: &default-http
|
|
group: http
|
|
interval: 10m
|
|
conditions: &default-http-conditions
|
|
- "[STATUS] == 200"
|
|
|
|
endpoints:
|
|
|
|
# BASE #
|
|
|
|
- name: proxy
|
|
<<: *default-http
|
|
group: base
|
|
url: "http://proxy"
|
|
conditions:
|
|
- "[STATUS] == 503" # as there is no service hosted @ "proxy"
|
|
|
|
|
|
# CORE #
|
|
|
|
- name: ntfy
|
|
<<: *default-http
|
|
group: core
|
|
url: "https://ntfy.neo.ixvd.net"
|
|
|
|
- name: rabbitmq
|
|
group: core
|
|
url: "tcp://rabbitmq:5672"
|
|
interval: 10m
|
|
conditions:
|
|
- "[CONNECTED] == true"
|
|
|
|
|
|
# CLOUD #
|
|
|
|
- name: cryptpad
|
|
<<: *default-http
|
|
group: cloud
|
|
url: "https://pad.ixvd.net"
|
|
|
|
- name: "cryptpad sandbox"
|
|
<<: *default-http
|
|
group: cloud
|
|
url: "https://pad.sandbox.neo.ixvd.net"
|
|
|
|
|
|
# DEVOPS #
|
|
|
|
- name: gitlab
|
|
group: devops
|
|
url: "tcp://gitlab:80"
|
|
interval: 10m
|
|
conditions:
|
|
- "[CONNECTED] == true" # because i've implemented something in the gitlab container
|
|
|
|
|
|
# GAMES #
|
|
|
|
- name: hopper
|
|
group: games
|
|
url: "tcp://ixvd.net:25565"
|
|
conditions:
|
|
- "[CONNECTED] == true"
|
|
|
|
|