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

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

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

    /var/log/nginx/*log {
    daily
    rotate 10
    missingok
    notifempty
    compress
    sharedscripts
    postrotate
        /bin/kill -USR1 $(cat /var/run/nginx.pid 2>/dev/null) 2>/dev/null || :
    endscript
}


    
  

Config Details

Location
/etc/logrotate.d/nginx
Operating system
CentOS Linux 6
Length
12 lines
MD5 checksum
1ab62459d7942fec2313ed0ef38d7ee6

Usage

Download the raw file with wget or curl

Wget

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

cURL

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