diff --git a/modules/system/homelab/dash.nix b/modules/system/homelab/dash.nix index 4cbfb89..0040128 100644 --- a/modules/system/homelab/dash.nix +++ b/modules/system/homelab/dash.nix @@ -229,9 +229,9 @@ in { { links = [{ same-tab = true; - title = "NixOS Flake"; - icon = "si:git"; - url = "https://flakes.satr14.my.id"; + title = "NixFlake"; + icon = "si:nixos"; + url = "https://flake.satr14.my.id"; }]; } { diff --git a/modules/system/homelab/proxy.nix b/modules/system/homelab/proxy.nix index 4bcac12..ac88036 100644 --- a/modules/system/homelab/proxy.nix +++ b/modules/system/homelab/proxy.nix @@ -57,6 +57,10 @@ in { }) redirects // lib.mapAttrs' (subdomain: cfg: lib.nameValuePair (if subdomain == "@" then base else "${subdomain}.${base}") { useACMEHost = base; forceSSL = true; + extraConfig = '' + access_log /var/log/nginx/${subdomain}.access.log; + error_log /var/log/nginx/${subdomain}.error.log; + ''; locations."/" = { proxyPass = cfg.dest; proxyWebsockets = true;