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

时间:2023-11-17 10:45:32

在 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