指引网

当前位置: 主页 > 服务器 > Nginx >

如何限制Apache日志access.log、error.log文件大小??

来源:网络 作者:佚名 点击: 时间:2017-08-02 23:28
[摘要] 如何限制Apache日志access.log、error.log文件大小??
在 Windows 下的设置例子如下:
# 限制错误日志文件为 1M
ErrorLog "|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 1M"
# 每天生成一个错误日志文件
#ErrorLog "|bin/rotatelogs.exe  logs/error-%Y-%m-%d.log 86400"
# 限制访问日志文件为 1M
CustomLog "|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 1M" common
# 每天生成一个访问日志文件
#CustomLog "|bin/rotatelogs.exe  logs/access-%Y-%m-%d.log 86400" common 
------分隔线----------------------------