Compare commits
1 Commits
staging/me
...
testing/mu
Author | SHA1 | Date | |
---|---|---|---|
39496985f9 |
@@ -8,6 +8,7 @@
|
||||
./jackett.nix
|
||||
./jellyfin.nix
|
||||
./matrix
|
||||
./munin.nix
|
||||
./navidrome.nix
|
||||
./nginx.nix
|
||||
./pleroma.nix
|
||||
|
12
machines/servo/services/munin.nix
Normal file
12
machines/servo/services/munin.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
services.munin-node.enable = true;
|
||||
services.munin-cron = {
|
||||
enable = true;
|
||||
# collect data from the localhost
|
||||
hosts = ''
|
||||
[${config.networking.hostName}]
|
||||
address localhost
|
||||
'';
|
||||
};
|
||||
}
|
@@ -57,6 +57,13 @@
|
||||
# };
|
||||
};
|
||||
|
||||
# server statistics
|
||||
services.nginx.virtualHosts."sink.uninsane.org" = {
|
||||
addSSL = true;
|
||||
enableACME = true;
|
||||
root = "/var/www/munin";
|
||||
};
|
||||
|
||||
# Pleroma server and web interface
|
||||
services.nginx.virtualHosts."fed.uninsane.org" = {
|
||||
addSSL = true;
|
||||
|
Reference in New Issue
Block a user