Files
etc
apt
clamav
default
dnsmasq.d
dovecot
logrotate.d
nginx
php7.3-fpm
mysql
nginx
pam.d
postfix
postfix-clearnet
security
ssh
sysctl.d
systemd
tor
login.defs
rc.local
resolv.conf
vsftpd.conf
var
COPYING
README.md
hosting/etc/logrotate.d/nginx

38 lines
686 B
Plaintext

/var/log/nginx/*.log {
daily
missingok
rotate 1
nocompress
delaycompress
notifempty
create 0640 www-data www-data
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
}
/home/*/logs/*.log {
daily
missingok
rotate 1
nocompress
delaycompress
notifempty
su root www-data
create 0640 www-data www-data
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
}