]> git.pld-linux.org Git - packages/apache.git/blob - apache.logrotate
- UseCanonicalName On by default
[packages/apache.git] / apache.logrotate
1 /var/log/httpd/*access_log {
2     olddir /var/log/archiv/httpd
3     sharedscripts
4     postrotate
5         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
6     endscript
7 }
8
9 /var/log/httpd/*agent_log {
10     olddir /var/log/archiv/httpd
11     sharedscripts
12     postrotate
13         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
14     endscript
15 }
16
17 /var/log/httpd/*error_log {
18     olddir /var/log/archiv/httpd
19     sharedscripts
20     postrotate
21         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
22     endscript
23 }
24
25 /var/log/httpd/*referer_log {
26     olddir /var/log/archiv/httpd
27     sharedscripts
28     postrotate
29         /etc/rc.d/init.d/httpd graceful > /dev/null 2>&1 || /bin/true
30     endscript
31 }
This page took 0.054036 seconds and 3 git commands to generate.