mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-03 16:03:38 +00:00
13 lines
283 B
Plaintext
13 lines
283 B
Plaintext
/data/nginx/*.log {
|
|
daily
|
|
rotate 3
|
|
missingok
|
|
notifempty
|
|
compress
|
|
sharedscripts
|
|
postrotate
|
|
if [ -s /usr/local/nginx/logs/nginx.pid ]; then nginx -s reload; fi
|
|
kill "$(pgrep goaccess)"
|
|
endscript
|
|
}
|