用Nginx做Web服务器,如果没有处理好日志,日志文件可能会很恐怖~10G、20G
可以修改nginx.conf 找到access_log:
access_log /dev/null; error_log /dev/null;
这样全部把他们丢到系统的黑洞里了 不用每时每刻都往系统磁盘疯狂的读写日志了 还延长硬盘的寿命
修改完,重启Nginx( kill -HUP `cat logs/nginx.pid` )即可。
access_log off
Pingback: Nginx关闭日志 | 冰刀观察
access_log off; error_log off; 这样可以吗?
licess Reply:十一月 28th, 2012 at 2:08 下午
@ysq, access_log 可以off,error_log 不能off,可以丢到/dev/null 里。
评论
姓名 (required)
电子邮件(required)(will not be published)
站点
This site uses Akismet to reduce spam. Learn how your comment data is processed.
access_log off
Pingback: Nginx关闭日志 | 冰刀观察
access_log off;
error_log off;
这样可以吗?
licess Reply:
十一月 28th, 2012 at 2:08 下午
@ysq, access_log 可以off,error_log 不能off,可以丢到/dev/null 里。