From: brian Date: Tue, 26 Aug 1997 01:20:35 +0000 (+0000) Subject: PR: X-Git-Tag: APACHE_1_3b1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b1ab0defed26534314c075604916fe32df44cc2;p=thirdparty%2Fapache%2Fhttpd.git PR: Submitted by: Lars Eilebrecht Reviewed by: Brian Behlendorf Document ContentDigest. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@79080 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 45c6ddcea75..7693767a94f 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -29,6 +29,7 @@ always available.
  • AuthType
  • BindAddress
  • ClearModuleList +
  • ContentDigest
  • CoreDumpDirectory
  • DefaultType
  • <Directory> @@ -273,6 +274,36 @@ The server comes with a built-in list of active modules. This directive clears the list. It is assumed that the list will then be re-populated using the AddModule directive.


    +

    ContentDigest directive

    + +Syntax: ContentDigest on|off
    +Default: ContentDigest off
    +Context: any
    +Override: AuthConfig
    +Status: experimental

    +Compatibility: ContentDigest is only available in Apache 1.1 and later

    + +This directive enables the generation of Content-MD5 headers +as defined in RFC1864 respectively RFC2068.

    + +MD5 is an algorithm for computing a "message digest" (sometimes called +"fingerprint") of arbitrary-length data, with a high degree of confidence +that any alterations in the data will be reflected in alterations in the +message digest.

    + +The Content-MD5 header provides an end-to-end message +integrity check (MIC) of the entity-body. A proxy or client may check this +header for detecting accidental modification of the entity-body +in transit. +Example header: +

       Content-MD5: AuLb7Dp1rqtRtxz2m9kRpA==

    + +Note that this can cause performance problems on your server +since the message digest is computed on every request +(the values are not cached). + +


    +

    CoreDumpDirectory directive

    Syntax: CoreDumpDirectory directory
    diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index adc13ed6b98..69c5a4a0f56 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -69,6 +69,7 @@
  • CacheRoot
  • CacheSize
  • ClearModuleList +
  • ContentDigest
  • CookieExpires
  • CookieLog (mod_cookies)
  • CookieLog (mod_log_config)