/etc/logrotate.d/nginx - Ubuntu 12.04 LTS (Precise Pangolin)

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

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

    /var/log/nginx/*.log {
	daily
	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
		[ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
	endscript
}

    
  

Config Details

Location
/etc/logrotate.d/nginx
Operating system
Ubuntu 12.04 LTS (Precise Pangolin)
Length
18 lines
MD5 checksum
7ef469ee76b79350d3d710a2e8190b7c

Usage

Download the raw file with wget or curl

Wget

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

cURL

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