From 96180eb0183538d3baef89d491363a47297ca57f Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 3 Jun 2024 08:04:10 -0400 Subject: [PATCH] Infini-DL360: exclude nginx access log from backup --- hosts/Infini-DL360/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/Infini-DL360/default.nix b/hosts/Infini-DL360/default.nix index 99b0374..6cd7589 100644 --- a/hosts/Infini-DL360/default.nix +++ b/hosts/Infini-DL360/default.nix @@ -70,6 +70,12 @@ services.nginx.enable = true; + modules.backups.excludes = { + "/var/log/" = [ + "nginx/access.log" + ]; + }; + security.acme.certs."inx.moe" = { group = "nginx"; extraDomainNames = [ "*.inx.moe" ];