mirror of https://github.com/statping/statping
Created services.yml (markdown)
parent
ddfcf5fff4
commit
8adacba357
|
@ -0,0 +1,47 @@
|
|||
```yaml
|
||||
x-tcpservice: &tcpservice
|
||||
type: tcp
|
||||
check_interval: 60
|
||||
timeout: 15
|
||||
allow_notifications: true
|
||||
notify_after: 0
|
||||
notify_all_changes: true
|
||||
public: true
|
||||
redirect: true
|
||||
|
||||
x-httpservice: &httpservice
|
||||
type: http
|
||||
check_interval: 45
|
||||
timeout: 10
|
||||
allow_notifications: true
|
||||
notify_after: 2
|
||||
notify_all_changes: true
|
||||
public: true
|
||||
redirect: true
|
||||
|
||||
services:
|
||||
|
||||
- name: traefik
|
||||
type: tcp
|
||||
domain: traefik
|
||||
port: 80
|
||||
<<: *tcpservice
|
||||
|
||||
- name: portainer
|
||||
type: tcp
|
||||
domain: portainer
|
||||
port: 9000
|
||||
<<: *tcpservice
|
||||
|
||||
- name: organizr
|
||||
type: tcp
|
||||
domain: organizr
|
||||
port: 80
|
||||
<<: *tcpservice
|
||||
|
||||
- name: heimdall
|
||||
type: tcp
|
||||
domain: heimdall
|
||||
port: 80
|
||||
<<: *tcpservice
|
||||
```
|
Loading…
Reference in New Issue