Files
hestiacp/install/rpm/logrotate/nginx

14 lines
331 B
Plaintext
Raw Normal View History

2026-04-11 00:41:04 +03:00
/var/log/nginx/*log /var/log/nginx/domains/*log /usr/local/hestia/nginx-system/var/log/nginx/*log {
2024-03-19 22:05:27 +03:00
rotate 4
weekly
missingok
notifempty
compress
delaycompress
create 640
sharedscripts
postrotate
2026-04-11 00:41:04 +03:00
[ -f /run/nginx-system.pid ] && kill -USR1 `cat /run/nginx-system.pid`
2024-03-19 22:05:27 +03:00
endscript
}