/etc/logrotate.d/nginx - CentOS Linux 7

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

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

    /var/log/nginx/*.log {
    create 0640 nginx root
    daily
    rotate 10
    missingok
    notifempty
    compress
    delaycompress
    sharedscripts
    postrotate
        /bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
    endscript
}


    
  

Config Details

Location
/etc/logrotate.d/nginx
Operating system
CentOS Linux 7
Length
14 lines
MD5 checksum
a92ea25ba27074c141cb7d3ce8090261

Usage

Download the raw file with wget or curl

Wget

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

cURL

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