Compare commits

..

3 commits

Author SHA1 Message Date
Ingolf Wagner
197e516ec1
add *.ingolf-wagner.de healthchecks
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 11m8s
2024-11-08 21:21:45 +09:00
Ingolf Wagner
03a5b33bbf
update s3 healthchecks 2024-11-08 21:21:21 +09:00
Ingolf Wagner
e84fee5a36
add s3 bucket healthchecks 2024-11-07 11:04:07 +09:00
2 changed files with 15 additions and 0 deletions

View file

@ -6,6 +6,11 @@
9001
];
healthchecks.http.s3 = {
url = "http://s3.chungus.private:9001/login";
expectedContent = "minio";
};
clan.core.facts.services.s3 = factsGenerator.password {
name = "root";
service = "s3";

View file

@ -45,6 +45,16 @@ in
443
];
healthchecks.http."travel.ingolf-wagner.de" = {
url = "https://travel.ingolf-wagner.de";
expectedContent = "Tina & Palos Reiseblog";
};
healthchecks.http."tech.ingolf-wagner.de" = {
url = "https://tech.ingolf-wagner.de";
expectedContent = "Hey here are some articles about technical issues";
};
services.nginx = {
enable = true;
recommendedProxySettings = true;