Logoj0ke.net Open Build Service > Projects > ha > lighttpd > lighttpd.logrotate
Sign Up | Log In

File lighttpd.logrotate of Package lighttpd

x
 
1
/var/log/lighttpd/access.log {
2
    compress
3
    dateext
4
    maxage 365
5
    rotate 99
6
    size=+4096k
7
    notifempty
8
    missingok
9
    create 600 lighttpd lighttpd
10
    postrotate
11
     /etc/init.d/lighttpd reload
12
    endscript
13
}
14
15
/var/log/lighttpd/error.log {
16
    compress
17
    dateext
18
    maxage 365
19
    rotate 99
20
    size=+1024k
21
    notifempty
22
    missingok
23
    create 600 lighttpd lighttpd
24
    postrotate
25
     /etc/init.d/lighttpd reload
26
    endscript
27
}
28