diff options
author | stuebinm | 2024-07-01 22:30:50 +0200 |
---|---|---|
committer | stuebinm | 2024-07-01 22:30:50 +0200 |
commit | 758cdbc9af9bb73d11285f3e7f3fea5a2bcc44df (patch) | |
tree | 9162dbc4eb7b4d7b80ac14047fb90ecf2b014aa2 | |
parent | 1ca000daf84d81941bce756b83efa07c9c7de62b (diff) |
monitoring: check nobelium via https
openssh starts to deny recurring connections that don't try to
authenticate after a while, which seems to be what monit is doing for
the ssh check.
-rw-r--r-- | flora/services/monit.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flora/services/monit.nix b/flora/services/monit.nix index 9d290a9..a769045 100644 --- a/flora/services/monit.nix +++ b/flora/services/monit.nix @@ -42,8 +42,8 @@ if failed port 443 with protocol https then alert - check host nobelium with address no.colorspace.club - if failed port 22 with protocol ssh + check host nobelium with address colorspace.club + if failed port 443 with protocol https then alert ''; }; |