From 4e1430bfc7c8f60ec6a9cbcc3ee045b389f7ff01 Mon Sep 17 00:00:00 2001 From: hexchen Date: Fri, 15 Jan 2021 21:02:03 +0000 Subject: [PATCH] common: disable nginx access log --- common/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/default.nix b/common/default.nix index 419605d..eda5bad 100644 --- a/common/default.nix +++ b/common/default.nix @@ -73,4 +73,8 @@ in { security.acme.email = "info+acme@hacc.space"; security.acme.acceptTerms = true; + + services.nginx.appendConfig = '' + access_log off; + ''; }