Nginx grava logs no arquivo antigo depois de executar o logrotate

0

A configuração do logrotate é:

cat /etc/logrotate.d/nginx:

/data/logs/nginx/*.log
{
daily
dateext
dateformat .%Y-%m-%d
rotate 30
missingok
create
notifempty
sharedscripts
postrotate
        [ ! -f /usr/local/nginx/logs/nginx.pid ] || kill -USR1 'cat /usr/local/nginx/logs/nginx.pid'
endscript
}

Mas o nginx grava os logs no access.log.2016-05-15, não no access.log

-rw-r--r-- 1 www  root    0 May 14 03:46 access.log
-rw-r--r-- 1 www  root  47M May 16 10:26 access.log.2016-05-15

Como devo corrigir isso? Obrigado.

    
por Cynial 16.05.2016 / 08:13

0 respostas