automatic version update by autodist [release 3.3.11-1mamba;Tue Dec 03 2013]

This commit is contained in:
2024-01-05 18:05:26 +01:00
parent c8b6bfe278
commit 41b2ad6844
9 changed files with 5435 additions and 0 deletions

31
squid-logrotate Normal file
View File

@@ -0,0 +1,31 @@
/var/log/squid/access.log {
weekly
rotate 5
copytruncate
compress
notifempty
missingok
}
/var/log/squid/cache.log {
weekly
rotate 5
copytruncate
compress
notifempty
missingok
}
/var/log/squid/store.log {
weekly
rotate 5
copytruncate
compress
notifempty
missingok
# This script asks squid to rotate its logs on its own.
# Restarting squid is a long process and it is not worth
# doing it just to rotate logs
postrotate
/usr/sbin/squid -k rotate
endscript
}