nginx: Reduce number of rotated logs kept around

This commit is contained in:
Tristan Daniël Maat 2023-10-13 10:16:10 +02:00
parent eb3bd485c4
commit 95b5d4b3bd
Signed by: tlater
GPG key ID: 49670FD774E43268

View file

@ -153,7 +153,12 @@
services.logrotate = { services.logrotate = {
enable = true; enable = true;
settings = lib.mapAttrs' (virtualHost: _: settings =
{
# Override the default, just keep fewer logs
nginx.rotate = 6;
}
// lib.mapAttrs' (virtualHost: _:
lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" { lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" {
frequency = "daily"; frequency = "daily";
rotate = 2; rotate = 2;