You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was surprised to see that there is no logrotate configuration for the Ubuntu package. I only realised once the server ran out of space :D Here's what I ended up using:
var/log/openresty/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root root
sharedscripts
postrotate
if [ -f /usr/local/openresty/nginx/logs/nginx.pid ]; then
kill -USR1 `cat /usr/local/openresty/nginx/logs/nginx.pid`
fi
endscript
}
This is basically the same as the nginx Ubuntu 20.04 package's configuration with a tweak to the pid file location and the user and group of the log file ownership.
The text was updated successfully, but these errors were encountered:
Hi @brendon, Thanks for the suggestion, logrotate relies on the logrotated service and the log path is customizable.
Of course, you can make your own debian package if you like, by modified the packaging script of this repo.
Thanks @xiaocang :) That's all good. I was just letting you know in case it was an oversight as I think people would probably expect the default logs to be rotated by default like the nginx package does. Perhaps on the Debian or Ubuntu package page you could add a little note about needing to manually do log rotation so that it doesn't catch people out?
I was surprised to see that there is no
logrotate
configuration for the Ubuntu package. I only realised once the server ran out of space :D Here's what I ended up using:This is basically the same as the
nginx
Ubuntu 20.04 package's configuration with a tweak to thepid
file location and theuser
andgroup
of the log file ownership.The text was updated successfully, but these errors were encountered: