亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mod_log_config.html.en

?? Apache_2.0.59-Openssl_0.9 配置tomcat. Apache_2.0.59-Openssl_0.9 配置tomcat.
?? EN
?? 第 1 頁 / 共 2 頁
字號:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
              This file is generated from xml source: DO NOT EDIT
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
      -->
<title>mod_log_config - Apache HTTP Server</title>
<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
<link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
<link href="../images/favicon.ico" rel="shortcut icon" /></head>
<body>
<div id="page-header">
<p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
<p class="apache">Apache HTTP Server Version 2.0</p>
<img alt="" src="../images/feather.gif" /></div>
<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
<div id="path">
<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.0</a> &gt; <a href="./">Modules</a></div>
<div id="page-content">
<div id="preamble"><h1>Apache Module mod_log_config</h1>
<div class="toplang">
<p><span>Available Languages: </span><a href="../en/mod/mod_log_config.html" title="English">&nbsp;en&nbsp;</a> |
<a href="../ja/mod/mod_log_config.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
<a href="../ko/mod/mod_log_config.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
</div>
<table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Logging of the requests made to the server</td></tr>
<tr><th><a href="module-dict.html#Status">Status:</a></th><td>Base</td></tr>
<tr><th><a href="module-dict.html#ModuleIdentifier">Module營dentifier:</a></th><td>log_config_module</td></tr>
<tr><th><a href="module-dict.html#SourceFile">Source燜ile:</a></th><td>mod_log_config.c</td></tr></table>
<h3>Summary</h3>

    <p>This module provides for flexible logging of client
    requests. Logs are written in a customizable format, and may be
    written directly to a file, or to an external program.
    Conditional logging is provided so that individual requests may
    be included or excluded from the logs based on characteristics
    of the request.</p>

    <p>Three directives are provided by this module:
    <code class="directive"><a href="#transferlog">TransferLog</a></code> to create
    a log file, <code class="directive"><a href="#logformat">LogFormat</a></code>
    to set a custom format, and <code class="directive"><a href="#customlog">CustomLog</a></code> to define a log file and format in one
    step. The <code class="directive">TransferLog</code> and <code class="directive">CustomLog</code> directives can be used multiple times in each
    server to cause each request to be logged to multiple files.</p>
</div>
<div id="quickview"><h3 class="directives">Directives</h3>
<ul id="toc">
<li><img alt="" src="../images/down.gif" /> <a href="#bufferedlogs">BufferedLogs</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#cookielog">CookieLog</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#customlog">CustomLog</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#logformat">LogFormat</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#transferlog">TransferLog</a></li>
</ul>
<h3>Topics</h3>
<ul id="topics">
<li><img alt="" src="../images/down.gif" /> <a href="#formats">Custom Log Formats</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#security">Security Considerations</a></li>
</ul><h3>See also</h3>
<ul class="seealso">
<li><a href="../logs.html">Apache Log Files</a></li>
</ul></div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
<h2><a name="formats" id="formats">Custom Log Formats</a></h2>

    <p>The format argument to the <code class="directive"><a href="#logformat">LogFormat</a></code> and <code class="directive"><a href="#customlog">CustomLog</a></code> directives is a string. This string is
    used to log each request to the log file. It can contain literal
    characters copied into the log files and the C-style control
    characters "\n" and "\t" to represent new-lines and tabs.
    Literal quotes and back-slashes should be escaped with
    back-slashes.</p>

    <p>The characteristics of the request itself are logged by
    placing "<code>%</code>" directives in the format string, which are
    replaced in the log file by the values as follows:</p>

    <table class="bordered"><tr class="header"><th>Format&nbsp;String</th>
        <th>Description</th></tr>
<tr><td><code>%%</code></td>
        <td>The percent sign (<em>Apache 2.0.44 and later</em>)</td></tr>
<tr class="odd"><td><code>%...a</code></td>
        <td>Remote IP-address</td></tr>
<tr><td><code>%...A</code></td>
        <td>Local IP-address</td></tr>
<tr class="odd"><td><code>%...B</code></td>
        <td>Size of response in bytes, excluding HTTP headers.</td></tr>
<tr><td><code>%...b</code></td>
        <td>Size of response in bytes, excluding HTTP headers. In CLF format, <em>i.e.</em>
        a '<code>-</code>' rather than a 0 when no bytes are sent.</td></tr>
<tr class="odd"><td><code>%...{<var>Foobar</var>}C</code></td>
        <td>The contents of cookie <var>Foobar</var> in the request sent
        to the server.</td></tr>
<tr><td><code>%...D</code></td>
        <td>The time taken to serve the request, in microseconds.</td></tr>
<tr class="odd"><td><code>%...{<var>FOOBAR</var>}e</code></td>
        <td>The contents of the environment variable
        <var>FOOBAR</var></td></tr>
<tr><td><code>%...f</code></td>
        <td>Filename</td></tr>
<tr class="odd"><td><code>%...h</code></td>
        <td>Remote host</td></tr>
<tr><td><code>%...H</code></td>
        <td>The request protocol</td></tr>
<tr class="odd"><td><code>%...{<var>Foobar</var>}i</code></td>
        <td>The contents of <code><var>Foobar</var>:</code> header line(s)
        in the request sent to the server.</td></tr>
<tr><td><code>%...l</code></td>
        <td>Remote logname (from identd, if supplied). This will return a
        dash unless <code class="directive"><a href="../mod/core.html#identitycheck">IdentityCheck</a></code> is set
        <code>On</code>.</td></tr>
<tr class="odd"><td><code>%...m</code></td>
        <td>The request method</td></tr>
<tr><td><code>%...{<var>Foobar</var>}n</code></td>
        <td>The contents of note <var>Foobar</var> from another
        module.</td></tr>
<tr class="odd"><td><code>%...{<var>Foobar</var>}o</code></td>
        <td>The contents of <code><var>Foobar</var>:</code> header line(s)
        in the reply.</td></tr>
<tr><td><code>%...p</code></td>
        <td>The canonical port of the server serving the request</td></tr>
<tr class="odd"><td><code>%...P</code></td>
        <td>The process ID of the child that serviced the request.</td></tr>
<tr><td><code>%...{<var>format</var>}P</code></td>
        <td>The process ID or thread id of the child that serviced the 
        request.  Valid formats are <code>pid</code> and <code>tid</code>.
        (<em>Apache 2.0.46 and later</em>)
        </td></tr>
<tr class="odd"><td><code>%...q</code></td>
        <td>The query string (prepended with a <code>?</code> if a query
        string exists, otherwise an empty string)</td></tr>
<tr><td><code>%...r</code></td>
        <td>First line of request</td></tr>
<tr class="odd"><td><code>%...s</code></td>
        <td>Status. For requests that got internally redirected, this is
        the status of the *original* request --- <code>%...&gt;s</code>
        for the last.</td></tr>
<tr><td><code>%...t</code></td>
        <td>Time the request was received (standard english
        format)</td></tr>
<tr class="odd"><td><code>%...{<var>format</var>}t</code></td>
        <td>The time, in the form given by format, which should be in
        <code>strftime(3)</code> format. (potentially localized)</td></tr>
<tr><td><code>%...T</code></td>
        <td>The time taken to serve the request, in seconds.</td></tr>
<tr class="odd"><td><code>%...u</code></td>
        <td>Remote user (from auth; may be bogus if return status
        (<code>%s</code>) is 401)</td></tr>
<tr><td><code>%...U</code></td>
        <td>The URL path requested, not including any query string.</td></tr>
<tr class="odd"><td><code>%...v</code></td>
        <td>The canonical <code class="directive"><a href="../mod/core.html#servername">ServerName</a></code>
        of the server serving the request.</td></tr>
<tr><td><code>%...V</code></td>
        <td>The server name according to the <code class="directive"><a href="../mod/core.html#usecanonicalname">UseCanonicalName</a></code> setting.</td></tr>
<tr class="odd"><td><code>%...X</code></td>
        <td>Connection status when response is completed:

        <table>
        
        <tr><td><code>X</code> =</td>
            <td>connection aborted before the response completed.</td></tr>
        <tr><td><code>+</code> =</td>
            <td>connection may be kept alive after the response is
            sent.</td></tr>
        <tr><td><code>-</code> = </td>
            <td>connection will be closed after the response is
            sent.</td></tr>
        </table>

        <p>(This directive was <code>%...c</code> in late versions of Apache
        1.3, but this conflicted with the historical ssl
        <code>%...{<var>var</var>}c</code> syntax.)</p></td></tr>
<tr><td><code>%...I</code></td>
        <td>Bytes received, including request and headers, cannot be zero.
        You need to enable <code class="module"><a href="../mod/mod_logio.html">mod_logio</a></code> to use this.</td></tr>
<tr class="odd"><td><code>%...O</code></td>
        <td>Bytes sent, including headers, cannot be zero. You need to
        enable <code class="module"><a href="../mod/mod_logio.html">mod_logio</a></code> to use this.</td></tr>
</table>

    <p>The "<var>...</var>" can be nothing at all (<em>e.g.</em>,
    <code>"%h %u %r %s %b"</code>), or it can indicate conditions for
    inclusion of the item (which will cause it to be replaced with "-" if
    the condition is not met). The forms of condition are a list of
    HTTP status codes, which may or may not be preceded by "!".
    Thus, "%400,501{User-agent}i" logs <code>User-agent:</code> on 400
    errors and 501 errors (Bad Request, Not Implemented) only;
    "%!200,304,302{Referer}i" logs <code>Referer:</code> on all requests
    which did <em>not</em> return some sort of normal status.</p>

    <p>The modifiers "&lt;" and "&gt;" can be used for requests that
    have been internally redirected to choose whether the original or
    final (respectively) request should be consulted.  By default, the
    <code>%</code> directives <code>%s, %U, %T, %D,</code> and
    <code>%r</code> look at the original request while all others look
    at the final request.  So for example, <code>%&gt;s</code> can be
    used to record the final status of the request and
    <code>%&lt;u</code> can be used to record the original
    authenticated user on a request that is internally redirected to an
    unauthenticated resource.</p>

    <p>Note that in httpd 2.0 versions prior to 2.0.46, no escaping was performed
    on the strings from <code>%...r</code>, <code>%...i</code> and
    <code>%...o</code>. This was mainly to comply with the requirements of
    the Common Log Format. This implied that clients could insert control
    characters into the log, so you had to be quite careful when dealing
    with raw log files.</p>

    <p>For security reasons, starting with 2.0.46, non-printable and
    other special characters are escaped mostly by using
    <code>\x<var>hh</var></code> sequences, where <var>hh</var> stands for
    the hexadecimal representation of the raw byte. Exceptions from this
    rule are <code>"</code> and <code>\</code> which are escaped by prepending
    a backslash, and all whitespace characters which are written in their
    C-style notation (<code>\n</code>, <code>\t</code> etc).</p>

    <p>Note that in httpd 2.0, unlike 1.3, the <code>%b</code> and
    <code>%B</code> format strings do not represent the number of
    bytes sent to the client, but simply the size in bytes of the HTTP
    response (which will differ, for instance, if the connection is
    aborted, or if SSL is used).  The <code>%O</code> format provided
    by <code class="module"><a href="../mod/mod_logio.html">mod_logio</a></code> will log the actual number of bytes
    sent over the network.</p>

    <p>Some commonly used log format strings are:</p>

    <dl>
      <dt>Common Log Format (CLF)</dt>
      <dd><code>"%h %l %u %t \"%r\" %&gt;s %b"</code></dd>

      <dt>Common Log Format with Virtual Host</dt>
      <dd><code>"%v %h %l %u %t \"%r\" %&gt;s %b"</code></dd>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美三级日韩三级| 久久综合九色综合97婷婷| 大陆成人av片| 中文字幕欧美一| 欧美日韩第一区日日骚| 男男视频亚洲欧美| 日本一区二区三区四区在线视频 | 国产欧美日韩精品一区| 91免费精品国自产拍在线不卡| 亚洲无人区一区| 国产性色一区二区| 欧美区在线观看| 国产一区视频在线看| 一区二区成人在线| 亚洲精品在线一区二区| 日本精品免费观看高清观看| 久久精品国产网站| 一区二区高清在线| 日本一区二区三区在线不卡| 欧美日韩一区二区在线观看视频| 亚洲色图欧美在线| 国产三级三级三级精品8ⅰ区| 欧美在线小视频| 99久久综合狠狠综合久久| 蜜桃久久久久久| 亚洲bt欧美bt精品777| 国产精品色在线| 国产日韩亚洲欧美综合| 日韩欧美国产1| 在线播放日韩导航| 日本精品一区二区三区高清 | 老司机精品视频导航| 一区二区三区四区在线播放| 国产欧美一区二区精品忘忧草 | 欧美日韩五月天| 色婷婷综合久久久| 99久久精品国产一区| 成人精品鲁一区一区二区| 久久精品国产精品青草| 麻豆国产精品一区二区三区| 午夜精品一区二区三区三上悠亚 | 久久91精品国产91久久小草| 日韩综合小视频| 亚洲成人高清在线| 婷婷综合另类小说色区| 日韩精品电影一区亚洲| 天天综合网 天天综合色| 香蕉成人伊视频在线观看| 日韩激情一二三区| 久久国产麻豆精品| 激情av综合网| 国产宾馆实践打屁股91| av网站免费线看精品| 色噜噜久久综合| 欧美二区三区的天堂| 日韩欧美在线一区二区三区| 欧美岛国在线观看| 国产精品久久久久影视| 亚洲精品国产品国语在线app| 亚洲一级二级在线| 首页国产欧美久久| 国产成人免费在线| 一本久道久久综合中文字幕| 欧美日韩在线一区二区| 欧美va亚洲va| 亚洲欧美经典视频| 麻豆一区二区三| 99久久er热在这里只有精品66| 在线看国产一区| 久久久久久久综合日本| 亚洲精品视频在线观看免费| 蜜臀av性久久久久蜜臀aⅴ四虎| 国产精品主播直播| 欧美日韩亚洲综合一区 | 亚洲午夜精品网| 国产毛片精品视频| 欧美日本不卡视频| 国产亚洲欧美日韩在线一区| 洋洋av久久久久久久一区| 激情丁香综合五月| 91精品国产综合久久福利| 国产精品热久久久久夜色精品三区 | 色婷婷综合激情| 国产亚洲一二三区| 男人的天堂久久精品| 91黄色在线观看| 中文欧美字幕免费| 精品亚洲aⅴ乱码一区二区三区| 91在线小视频| 欧美一区日韩一区| 99国产精品久久| 精品国产一区二区精华| 亚洲国产成人porn| 色天天综合色天天久久| 国产精品免费网站在线观看| 久久伊人蜜桃av一区二区| 日韩电影在线观看一区| 久久久天堂av| 欧美精品一区二区三| 99久久伊人久久99| 美女网站视频久久| 欧美一级在线观看| 国产精品网站导航| 成人精品免费看| 亚洲激情六月丁香| www.性欧美| 在线不卡免费欧美| 国产精品美女久久久久久久网站| 偷窥少妇高潮呻吟av久久免费| 精品一区二区三区免费| 91免费视频大全| 欧美成人性战久久| 亚洲精品成a人| 中文字幕精品—区二区四季| 日韩午夜三级在线| 91.com在线观看| 欧美天堂一区二区三区| 在线观看日韩毛片| 精品视频在线视频| 国产成人在线影院| 中文字幕一区二区在线播放| 国产一区二区三区精品欧美日韩一区二区三区 | 中文在线免费一区三区高中清不卡| 一区二区成人在线| 91亚洲国产成人精品一区二三| 欧美国产一区在线| 国产一区二区按摩在线观看| 久久综合色播五月| www.日韩在线| 樱花草国产18久久久久| 欧美日韩国产在线播放网站| 日韩精品福利网| 欧美成人性战久久| 国产精品1024| 亚洲综合在线第一页| 欧美v亚洲v综合ⅴ国产v| 成人丝袜高跟foot| 麻豆国产欧美一区二区三区| 久久精品视频在线免费观看| 欧美主播一区二区三区| 国产精品一区二区久久精品爱涩| 国产精品日日摸夜夜摸av| 91亚洲精品乱码久久久久久蜜桃| 免费日韩伦理电影| 亚洲精品成人天堂一二三| 国产亚洲va综合人人澡精品 | 久久er99精品| 亚洲免费在线播放| 国产精品久久久久一区| 精品国产a毛片| 国产欧美视频在线观看| 蜜桃视频第一区免费观看| 亚洲综合偷拍欧美一区色| 五月天国产精品| 欧美高清一级片在线| 欧美一区二区三区爱爱| 性久久久久久久久久久久| 亚洲另类在线制服丝袜| 日韩精品一区二区三区四区| 亚洲国产va精品久久久不卡综合 | 亚洲色图视频免费播放| 亚洲主播在线观看| 日韩国产高清在线| 国产一区二区三区国产| 国产xxx精品视频大全| 一本色道久久综合精品竹菊| 欧美视频第二页| 精品国产乱码久久| 中文字幕永久在线不卡| 午夜精品影院在线观看| 国产一区二区h| 在线观看日韩电影| 欧美电视剧在线观看完整版| 中文字幕在线不卡| 免费成人美女在线观看| www.亚洲精品| 日韩欧美一级二级三级| 国产精品福利一区二区| 亚洲成人综合在线| 成人精品视频一区二区三区尤物| 欧美日韩久久久| 国产精品美女久久久久久久久久久 | 中文字幕一区二区5566日韩| 国产麻豆精品一区二区| 久久99蜜桃精品| 成人免费观看av| 一本一道久久a久久精品综合蜜臀| 色一情一乱一乱一91av| 69成人精品免费视频| 久久丝袜美腿综合| 亚洲欧美日韩中文字幕一区二区三区| 亚洲一区二区三区不卡国产欧美 | 91精品国产综合久久香蕉的特点| 日韩色视频在线观看| 国产精品免费久久| 日韩电影在线一区二区| 成人短视频下载| 日韩欧美自拍偷拍| 玉足女爽爽91| 岛国精品在线观看|