Had to do a toString, thanks for the great error message nixos, fixed some other typos

This commit is contained in:
Lillian Violet 2024-03-26 14:52:15 +01:00
parent 9dacc2172e
commit 3c830bc6c4

View file

@ -12,12 +12,14 @@
http_addr = "127.0.0.1"; http_addr = "127.0.0.1";
}; };
provision = { provision = {
datasources.settings = {
apiVersion = 1;
datasources = [ datasources = [
{ {
name = "Prometheus"; name = "Prometheus";
type = "prometheus"; type = "prometheus";
access = "proxy"; access = "proxy";
url = "http://localhost:${config.services.prometheus.port}"; url = "http://localhost:${toString config.services.prometheus.port}";
isDefault = true; isDefault = true;
} }
# { # {
@ -30,6 +32,7 @@
]; ];
}; };
}; };
};
# nginx reverse proxy # nginx reverse proxy
services.nginx.virtualHosts.${config.services.grafana.settings.server.domain} = { services.nginx.virtualHosts.${config.services.grafana.settings.server.domain} = {
@ -38,7 +41,7 @@
## LetsEncrypt ## LetsEncrypt
enableACME = true; enableACME = true;
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.services.grafana.settings.server.port}"; proxyPass = "http://${toString config.services.grafana.settings.server.http_addr}:${toString config.services.grafana.settings.server.http_port}";
proxyWebsockets = true; proxyWebsockets = true;
}; };
}; };