Fix voyager; zfs, docker, metrics

This commit is contained in:
2023-04-16 16:49:08 +02:00
parent 9ce4b138cd
commit afc4b9f4bb
8 changed files with 63 additions and 57 deletions

View File

@@ -5,6 +5,6 @@
./prometheus.nix
./grafana.nix
./loki.nix
./snmp-exporter.nix
#./snmp-exporter.nix
];
}

View File

@@ -0,0 +1,15 @@
{ config, values, ... }:
{
services.nginx = {
enable = true;
enableReload = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}