]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tile/templates/default/logrotate.apache.erb
Avoid accessing form data for OPTIONS requests
[chef.git] / cookbooks / tile / templates / default / logrotate.apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 /var/log/apache2/*.log {
4   daily
5   size 1G
6   missingok
7   rotate 14
8   compress
9   delaycompress
10   compresscmd /usr/bin/zstd
11   compressext .zst
12   compressoptions -T0
13   uncompresscmd /usr/bin/unzstd
14   notifempty
15   create 640 root adm
16   sharedscripts
17   postrotate
18     /bin/systemctl reload apache2
19   endscript
20 }