/etc/logrotate.d/nginx - Debian GNU/Linux 10 (buster)

This is the default example configuration of nginx provided by nginx. This config file was generated by nginx running on Debian 10.

It is located under: /etc/logrotate.d/nginx

    /var/log/nginx/*.log {
	daily
	missingok
	rotate 14
	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
		invoke-rc.d nginx rotate >/dev/null 2>&1
	endscript
}

    
  

Config Details

Location
/etc/logrotate.d/nginx
Operating system
Debian GNU/Linux 10 (buster)
Length
18 lines
MD5 checksum
b29112f9480a70fa7de2729ff39923e2

Usage

Download the raw file with wget or curl

Wget

wget -O nginx.example http://exampleconfig.com/static/raw/nginx/debian10/etc/logrotate.d/nginx

cURL

curl http://exampleconfig.com/static/raw/nginx/debian10/etc/logrotate.d/nginx > nginx.example