nginx 로그 스크롤 설정 방법

532 단어
/ etc / logrotate. d / 아래 에 파일 만 들 기
/var/log/nginx/*log {
        create 0644 ec2-user adm
        daily
        dateext
        dateformat -%Y%m%d
        rotate 90
        missingok
        notifempty
        compress
        sharedscripts
        postrotate
                day=$(date +%Y%m%d)
                /bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null` 2>/dev/null || true
        endscript
}

그리고 다음 코드 테스트 를 해 보 겠 습 니 다.
sudo logrotate -f /etc/logrotate.d/nginx

좋은 웹페이지 즐겨찾기