已测可用环境:Apache2.4.4
说明:
新增了480表示中国时区;
| 后面加了空格才能生效;
“/www/lanmps/apache/bin/rotatelogs”
是生成日志系统的shell路径;
“/www/wwwLogs/logs/www.abc.com/”
是生成日志的目录,目录文件夹必须存在,日志业务不能自动创建文件夹;
86400 表示一天的秒数。
<VirtualHost *:80>
DocumentRoot "/www/wwwroot/www.lanmps.com"
ServerName www.lanmps.com
DirectoryIndex index.html index.php index.htm
ErrorLog "/www/wwwLogs/logs/www.lanmps.com/_error.error_log"
CustomLog "| /www/lanmps/apache/bin/rotatelogs /www/wwwLogs/logs/www.abc.com/%Y_%m_%d.access.log 86400 480" common
<Directory /www/wwwroot/www.lanmps.com>
Options -Indexes
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
参考资料:https://blog.csdn.net/fenglailea/article/details/42673291
网友评论