Archived
20 lines
331 B
Nix
20 lines
331 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.logrotate = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
"/mnt/docker/volumes/traefik-data/logs/*.log" = {
|
|
daily = true;
|
|
size = "100M";
|
|
rotate = 20;
|
|
compress = true;
|
|
missingok = true;
|
|
notifempty = true;
|
|
copytruncate = true;
|
|
};
|
|
|
|
};
|
|
};
|
|
} |