mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-02-07 02:52:22 +03:00
19 lines
329 B
Plaintext
19 lines
329 B
Plaintext
|
/var/log/nginx/*.log {
|
||
|
daily
|
||
|
missingok
|
||
|
rotate 14
|
||
|
compress
|
||
|
delaycompress
|
||
|
notifempty
|
||
|
create 0640 www-data adm
|
||
|
sharedscripts
|
||
|
prerotate
|
||
|
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
|
||
|
run-parts /etc/logrotate.d/httpd-prerotate; \
|
||
|
fi \
|
||
|
endscript
|
||
|
postrotate
|
||
|
invoke-rc.d nginx rotate >/dev/null 2>&1
|
||
|
endscript
|
||
|
}
|