nginx 關閉日誌;其實一種方法就是寫入/dev/null檔案或設定關閉。
(推薦教學:nginx教學)
nginx 日誌有兩種類型:
access.log http 記錄存取日誌。
error.log server 操作記錄日誌
1、關閉http 記錄存取日誌
access_log off;
或
##
access_log /dev/null;
error_log /dev/null;
cat /dev/null > test.log 或 echo " " > test.log
ps -ef|grep delete kill -9 pid
以上是nginx怎麼關閉日誌功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!