From 87d90a617d92253dc8f0d74eadb37a8f3ea69024 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 3 Jul 2025 11:15:40 -0500 Subject: [PATCH] minio-backups: Disable nginx access logs entirely The _nginx_ access log files are absolutely spammed with requets from Restic and WAL-G, to the point where they fill the log volume on _chromie_ every day. They're not particularly useful anyway; I've never looked at them, and any information they contain can be obtained in another way, if necessary, for troubleshooting. --- group_vars/minio-backups.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/group_vars/minio-backups.yml b/group_vars/minio-backups.yml index 75199f0..c8033a8 100644 --- a/group_vars/minio-backups.yml +++ b/group_vars/minio-backups.yml @@ -31,4 +31,5 @@ nginx_ssl_certificate: /etc/letsencrypt/live/{{ minio_cert_main_domain }}/fullch nginx_ssl_certificate_key: /etc/letsencrypt/live/{{ minio_cert_main_domain }}/privkey.pem nginx_error_log_file: false nginx_access_log_syslog: false +nginx_access_log_file: false nginx_keep_num_logs: 1