add monitoring

This commit is contained in:
XenGi 2026-02-14 13:09:02 +01:00
parent 7abc7e6c26
commit c8f0058228
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ config, ... }:
{
services.nginx.virtualHosts."monitoring.${config.networking.domain}" = {
default = true;
quic = true;
kTLS = true;
forceSSL = true;
enableACME = true;
#basicAuthFile = config.age.secrets.grafana_basic_auth.path;
locations = {
"/" = {
proxyPass = "http://";
recommendedProxySettings = true;
};
};
};
}