✅ 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 = {
|
services.syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openDefaultPorts = false;
|
openDefaultPorts = false;
|
||||||
|
|
|
@ -6,6 +6,11 @@
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
verify.http.syncthing-gui = {
|
||||||
|
url = config.services.syncthing.guiAddress;
|
||||||
|
expectedContent = "syncthing";
|
||||||
|
};
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
overrideFolders = true;
|
overrideFolders = true;
|
||||||
|
|
|
@ -5,6 +5,10 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
verify.http.forgejjo = {
|
||||||
|
url = "http://git.chungus.private/explore/repos";
|
||||||
|
expectedContent = "nixinate";
|
||||||
|
};
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -6,6 +6,11 @@
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
verify.http.syncthing-gui = {
|
||||||
|
url = config.services.syncthing.guiAddress;
|
||||||
|
expectedContent = "syncthing";
|
||||||
|
};
|
||||||
|
|
||||||
#networking.firewall.allowedTCPPorts = [ 22000 ];
|
#networking.firewall.allowedTCPPorts = [ 22000 ];
|
||||||
#networking.firewall.allowedUDPPorts = [ 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 = {
|
services.vaultwarden = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# backupDir =
|
# backupDir =
|
||||||
|
|
|
@ -3,6 +3,12 @@ let
|
||||||
port = 9001;
|
port = 9001;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
verify.http.wastebin = {
|
||||||
|
url = "https://paste.ingolf-wagner.de";
|
||||||
|
expectedContent = "BOOOOM"; # fixme: seems this part is not working
|
||||||
|
};
|
||||||
|
|
||||||
services.wastebin = {
|
services.wastebin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in a new issue