mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-03 10:08:15 -05:00
25 lines
527 B
Plaintext
25 lines
527 B
Plaintext
|
/data/logs/*_access.log /data/logs/*/access.log {
|
||
|
create 0644 root root
|
||
|
weekly
|
||
|
rotate 4
|
||
|
missingok
|
||
|
notifempty
|
||
|
compress
|
||
|
sharedscripts
|
||
|
postrotate
|
||
|
/bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
|
||
|
endscript
|
||
|
}
|
||
|
|
||
|
/data/logs/*_error.log /data/logs/*/error.log {
|
||
|
create 0644 root root
|
||
|
weekly
|
||
|
rotate 10
|
||
|
missingok
|
||
|
notifempty
|
||
|
compress
|
||
|
sharedscripts
|
||
|
postrotate
|
||
|
/bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
|
||
|
endscript
|
||
|
}
|