nixos/middleman: Add nginx netdata monitoring

This commit is contained in:
2022-06-12 18:23:35 +01:00
parent f01fa8f6b1
commit 6ae99062fd
2 changed files with 32 additions and 1 deletions

View File

@@ -63,6 +63,21 @@ in
wellKnown
];
};
"localhost" = {
forceSSL = false;
onlySSL = false;
locations = {
"/status".extraConfig = ''
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
vhost_traffic_status_display;
vhost_traffic_status_display_format html;
'';
};
};
"sso.${lib.my.pubDomain}" = {
locations."/".proxyPass = config.my.nginx-sso.includes.endpoint;
@@ -71,7 +86,7 @@ in
"netdata-colony.${lib.my.pubDomain}" =
let
hosts = [ "vm" "fw" "ctr" "jackflix-ctr" ];
hosts = [ "vm" "fw" "ctr" "http" "jackflix-ctr" ];
matchHosts = concatStringsSep "|" hosts;
in
mkMerge [