projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
nominatim: move apache log into nominatim logdir
[chef.git]
/
cookbooks
/
nominatim
/
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
missingok
6
rotate 42
7
compress
8
delaycompress
9
notifempty
10
create 640 root adm
11
sharedscripts
12
postrotate
13
/bin/systemctl reload apache2
14
endscript
15
}
16
17
18
<%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-access.log {
19
daily
20
missingok
21
rotate 42
22
compress
23
delaycompress
24
notifempty
25
create 640 root adm
26
sharedscripts
27
postrotate
28
/bin/systemctl reload apache2
29
endscript
30
}