✅ add some more healtchecks
This commit is contained in:
parent
d70e39d6fa
commit
4bd2f7f3f2
6 changed files with 31 additions and 0 deletions
|
@ -6,6 +6,11 @@
|
|||
}:
|
||||
{
|
||||
|
||||
verify.http.syncthing-gui = {
|
||||
url = config.services.syncthing.guiAddress;
|
||||
expectedContent = "syncthing";
|
||||
};
|
||||
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
openDefaultPorts = false;
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
}:
|
||||
{
|
||||
|
||||
verify.http.syncthing-gui = {
|
||||
url = config.services.syncthing.guiAddress;
|
||||
expectedContent = "syncthing";
|
||||
};
|
||||
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
overrideFolders = true;
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
verify.http.forgejjo = {
|
||||
url = "http://git.chungus.private/explore/repos";
|
||||
expectedContent = "nixinate";
|
||||
};
|
||||
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
}:
|
||||
{
|
||||
|
||||
verify.http.syncthing-gui = {
|
||||
url = config.services.syncthing.guiAddress;
|
||||
expectedContent = "syncthing";
|
||||
};
|
||||
|
||||
#networking.firewall.allowedTCPPorts = [ 22000 ];
|
||||
#networking.firewall.allowedUDPPorts = [ 22000 ];
|
||||
|
||||
|
|
|
@ -5,6 +5,12 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
|
||||
verify.http.vaultwarden = {
|
||||
url = config.services.vaultwarden.config.domain;
|
||||
expectedContent = "BOOOOM"; # fixme: seems this part is not working
|
||||
};
|
||||
|
||||
services.vaultwarden = {
|
||||
enable = true;
|
||||
# backupDir =
|
||||
|
|
|
@ -3,6 +3,12 @@ let
|
|||
port = 9001;
|
||||
in
|
||||
{
|
||||
|
||||
verify.http.wastebin = {
|
||||
url = "https://paste.ingolf-wagner.de";
|
||||
expectedContent = "BOOOOM"; # fixme: seems this part is not working
|
||||
};
|
||||
|
||||
services.wastebin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
Loading…
Reference in a new issue