mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
22 lines
489 B
Nix
22 lines
489 B
Nix
{ config, ... }:
|
|
{
|
|
services = {
|
|
grafana = {
|
|
enable = true;
|
|
settings.server = {
|
|
domain = "monitoring.liv.town";
|
|
http_addr = "127.0.0.1";
|
|
http_port = 2342;
|
|
};
|
|
};
|
|
|
|
nginx.virtualHosts.${config.services.grafana.domain} = {
|
|
useACMEHost = "liv.town";
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:${toString config.services.grafana.port}";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
}:
|
|
}
|