...">
美文网首页
httpd常用配置:日志设定

httpd常用配置:日志设定

作者: Simon_Ye | 来源:发表于2020-02-21 16:14 被阅读0次

    日志设定

    日志类型:访问日志和错误日志

    访问日志:

     LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
     CustomLog "logs/access_log" combined
    LogFormat format strings:
      http://httpd.apache.org/docs/2.4/mod/mod_log_config.html#formats
      %h:客户端IP地址;
      %l:Remote User,通常为一个减号("-");
      %u:Remote user(from auth; may be bogus if return status (%s) is 401);非为登录访问时,其为一个减号;
      %t:服务器收到请求时的时间;
      %r:First line of request,即表示请求报文的首行;记录了此次请求的“方法”,“URL”以及协议版本;
      %>s:响应状态码;
      %b:响应报文的大小,单位是字节;不包括响应报文的http首部;
      %{Referer}i:请求报文中首部"referer"的值;即从哪个页面中的超链接跳转至当前页面的;
      %{User-Agent}i:请求报文中首部"User-Agent"的值;即发出请求的应用程序;

    错误日志:

     ErrorLog logs/error_log
     LogLevel warn
      Possible values include:debug,info,notice,warn,error,crit,alert,emerg.

    相关文章

      网友评论

          本文标题:httpd常用配置:日志设定

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