<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <font size="2"><font face="Courier 10 Pitch">Hi guys.<br>
        <br>
        I run off distro's vanilla-default logrotate, like so:<br>
        ```<br>
        /var/log/nginx/*log {<br>
            daily<br>
            rotate 10<br>
            missingok<br>
            notifempty<br>
            compress<br>
            delaycompress<br>
            sharedscripts<br>
            postrotate<br>
                /bin/kill -USR1 `cat /run/nginx.pid 2>/dev/null`
        2>/dev/null || true<br>
            endscript<br>
        }<br>
        ```<br>
        <br>
        and I wonder...<br>
        if it is logrotate's _fault_ or perhaps I screwed Nginx's
        configs somewhere? For after logs got rotated Nginx logs into:<br>
        access.log.1 & error.log.1<br>
        and now as it should, you know<br>
        access.log & error.log<br>
        <br>
        many thanks, L.<br>
      </font></font>
  </body>
</html>