diff options
author | Silvino Silva <silvino@bk.ru> | 2020-02-07 03:41:45 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2020-02-15 00:56:46 +0000 |
commit | a947a31ede27fdf995e0a63e766fcd68eb491426 (patch) | |
tree | 74c749814fc91a22148b637b90507c78c56e02c8 /tools/conf/etc/logrotate.d/nginx | |
parent | ac7c572733282e49801b16531d841682e3ab1b5a (diff) | |
download | doc-a947a31ede27fdf995e0a63e766fcd68eb491426.tar.gz |
System configuration update
Diffstat (limited to 'tools/conf/etc/logrotate.d/nginx')
-rw-r--r-- | tools/conf/etc/logrotate.d/nginx | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/conf/etc/logrotate.d/nginx b/tools/conf/etc/logrotate.d/nginx deleted file mode 100644 index ae05445..0000000 --- a/tools/conf/etc/logrotate.d/nginx +++ /dev/null @@ -1,23 +0,0 @@ -/var/log/nginx/access.log { - weekly - create 0664 root www - rotate 5 - sharedscripts - postrotate - if [ -f /var/run/syslog-ng.pid ]; then \ - kill -HUP `cat /var/run/syslog-ng.pid`; \ - fi; - endscript -} - -/var/log/nginx/error.log { - weekly - create 0644 root root - rotate 5 - sharedscripts - postrotate - if [ -f /var/run/syslog-ng.pid ]; then \ - kill -HUP `cat /var/run/syslog-ng.pid`; \ - fi; - endscript -} |