“Nginxlog关闭”的版本间的差异
跳到导航
跳到搜索
第4行: | 第4行: | ||
可以修改nginx.conf 找到access_log: | 可以修改nginx.conf 找到access_log: | ||
+ | #这是access | ||
+ | access_log off; | ||
+ | #or | ||
access_log /dev/null; | access_log /dev/null; | ||
− | + | ||
+ | #这是error | ||
error_log /dev/null; | error_log /dev/null; | ||
2020年4月28日 (二) 01:41的最新版本
==
可以修改nginx.conf 找到access_log: #这是access access_log off; #or access_log /dev/null; #这是error error_log /dev/null; 这样全部把他们丢到系统的黑洞里了 不用每时每刻都往系统磁盘疯狂的读写日志了 还延长硬盘的寿命 修改完,重启Nginx( kill -HUP `cat logs/nginx.pid` )即可。 NOTE access_log 可以off,error_log 不能off,可以丢到/dev/null 里。