Get the default configuration file nginx for nginx, optimized for Ubuntu 14.04 LTS (Trusty Tahr). This example configuration ensures optimal compatibility and performance for nginx, making it easy to set up and adjust to meet your needs.
Find and download the configuration file here: /etc/logrotate.d/nginx.
For more configurations and setup guides, visit our related files section to further customize your system.
/var/log/nginx/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 0640 www-data adm
sharedscripts
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi \
endscript
postrotate
[ -s /run/nginx.pid ] && kill -USR1 `cat /run/nginx.pid`
endscript
}
Download the raw file with wget or curl
wget -O nginx.example https://exampleconfig.com/static/raw/nginx/ubuntu14.04/etc/logrotate.d/nginx
curl https://exampleconfig.com/static/raw/nginx/ubuntu14.04/etc/logrotate.d/nginx > nginx.example
Other config files you might find useful