美文网首页
apache日志自动按年月日生成

apache日志自动按年月日生成

作者: elileo | 来源:发表于2019-02-19 14:51 被阅读0次

    已测可用环境: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

    相关文章

      网友评论

          本文标题:apache日志自动按年月日生成

          本文链接:https://www.haomeiwen.com/subject/ghxfyqtx.html