Nginx关闭日志

用Nginx做Web服务器,如果没有处理好日志,日志文件可能会很恐怖~10G、20G

可以修改nginx.conf 找到access_log:

access_log /dev/null;
error_log /dev/null;

这样全部把他们丢到系统的黑洞里了
不用每时每刻都往系统磁盘疯狂的读写日志了 还延长硬盘的寿命

修改完,重启Nginx( kill -HUP `cat logs/nginx.pid` )即可。

4 Responses to Nginx关闭日志

  1. Pingback: Nginx关闭日志 | 冰刀观察

  2. ysq says:

    access_log off;
    error_log off;
    这样可以吗?

    licess Reply:

    @ysq, access_log 可以off,error_log 不能off,可以丢到/dev/null 里。

发表评论

(required)

This site uses Akismet to reduce spam. Learn how your comment data is processed.