nginx nginx configuration example for Ubuntu 18.04 LTS (Bionic Beaver)

Get the default configuration file nginx for nginx, optimized for Ubuntu 18.04 LTS (Bionic Beaver). 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 {
	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
Ubuntu 18.04 LTS (Bionic Beaver)
Length
18 lines
MD5 checksum
b29112f9480a70fa7de2729ff39923e2

Usage

Download the raw file with wget or curl

Wget

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

cURL

curl https://exampleconfig.com/static/raw/nginx/ubuntu18.04/etc/logrotate.d/nginx > nginx.example