This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/modules/rotate-traefik-logs.nix
T
beatzaplenty 8ff22175e5
Check NixOS configurations / eval-hosts (push) Failing after 47m59s
update log path
2026-07-13 01:09:34 +10:00

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;
};
};
};
}