mirror of
https://git.proxmox.com/git/pmg-api
synced 2026-01-02 14:51:12 +00:00
to keep the log from growing without end. Rotate monthly and keep 12 logs, since the logs should not be too large (e.g. a productive instance, with ~20 users using the quarantine and some configuration changes amounts to 108M over 2.5 years) the logrotate snippet is placed in /etc/logrotate.d/pmg-api by dh_installlogrotate(1). Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
/var/log/pmgproxy/pmgproxy.log {
|
|
rotate 12
|
|
monthly
|
|
missingok
|
|
compress
|
|
delaycompress
|
|
notifempty
|
|
create 640 www-data www-data
|
|
sharedscripts
|
|
postrotate
|
|
/bin/systemctl try-reload-or-restart pmgproxy.service
|
|
endscript
|
|
}
|