Compare commits

..

1 commit

Author SHA1 Message Date
korenstin
da86fe8fac
grafana: configuration du service 2025-10-07 20:04:14 +02:00
4 changed files with 4 additions and 14 deletions

View file

@ -98,6 +98,10 @@ in
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
upstreams.grafana.servers."unix:/${cfg.settings.server.socket}" = { };
virtualHosts."grafana-ng.auro.re" = {
root = cfg.settings.server.static_root_path;

View file

@ -6,9 +6,6 @@
enable = true;
hostName = "jitsi-ng.auro.re";
nginx.enable = true;
videobridge.enable = true;
config = {
liveStreaming.enabled = true;
};

View file

@ -3,7 +3,6 @@
{
imports = [
./hardware-configuration.nix
./nginx.nix
./virtualisation.nix
];
}

View file

@ -1,10 +0,0 @@
{ ... }:
{
services.nginx = {
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
};
}