①配置错误日志
在http.conf配置:
ErrorLog "| /opt/lampp/bin/rotatelogs /opt/lampp/logs/%Y_%m_%d_error_log 86400 480
说明:指定为每天一个生成的一个文件(86400秒也就是一天的生命周期,480分钟为中国时区相对于UTC时差为480分钟)
其他例子:
# 限制错误日志文件为 1M
ErrorLog “|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 1M”
#每天生成一个错误日志文件
#ErrorLog “|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 86400″
②配置访问日志
CustomLog "| /opt/lampp/bin/rotatelogs /opt/lampp/logs/%Y_%m_%d_access_log 86400 480" common
其他例子:
# 限制访问日志文件为 1M
CustomLog “|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 1M” common
# 每天生成一个访问日志文件
#CustomLog “|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 86400″ common