From: Jim Jagielski Date: Mon, 11 May 1998 20:08:04 +0000 (+0000) Subject: PR: X-Git-Tag: APACHE_1_3b7~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1087ddf63e9cd4e54899e78ee872d3c6f5ae581f;p=thirdparty%2Fapache%2Fhttpd.git PR: Obtained from: Submitted by: Jim Jagielski Reviewed by: Replace the AddVersionPlatform directive with ServerTokens directive which allow for either Minimal ("Apache/1.3.0"), OS ("Apache/1.3.0 (UNIX)") or Full ("Apache/1.3.0 (UNIX) PHP/3.0") type Server headers. SERVER_SUBVERSION is no longer supported. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81244 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 5ceb8fb3c64..64cbbd85783 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -24,7 +24,6 @@ always available.
  • AccessConfig
  • AccessFileName
  • AddModule -
  • AddVersionPlatform
  • AllowOverride
  • AuthName
  • AuthType @@ -78,6 +77,7 @@ always available.
  • ServerPath
  • ServerRoot
  • ServerSignature +
  • ServerTokens
  • ServerType
  • StartServers
  • ThreadsPerChild @@ -179,52 +179,6 @@ server comes with a pre-loaded list of active modules; this list can be cleared with the ClearModuleList directive.


    -

    AddVersionPlatform directive

    - -Syntax: AddVersionPlatform On|Off
    -Context: server config
    -Status: core
    -Compatibility: AddVersionPlatform is only available - in Apache 1.3 and later - -

    -This directive controls whether the server's operating system platform -will be identified in the Server response header -field which is sent back to clients. If enabled, a non-specific platform -designation will be added to the identity string, as shown below: -

    -
    -
    AddVersionPlatform Off -
    -
    Server sends: Server: Apache/1.3.0 -
    -
    AddVersionPlatform On (or not specified) -
    -
    Server sends: Server: Apache/1.3.0 (UNIX) -
    -
    -

    -This setting applies to the entire server, and cannot be enabled or -disabled on a virtualhost-by-virtualhost basis. -

    -

    -By default, this information is included in the server -identity string. -

    -
    -

    AllowOverride directive

    +

    ServerTokens directive

    + +Syntax: ServerTokens Min|OS|Full
    +Context: server config
    +Status: core
    +Compatibility: ServerTokens is only available + in Apache 1.3 and later + +

    +This directive controls whether Server response header +field which is sent back to clients includes a description of the generic +OS-type of the server as well as information about compiled-in modules. +

    +
    +
    ServerTokens Min[imal] +
    +
    Server sends (e.g.): Server: Apache/1.3.0 +
    +
    ServerTokens OS +
    +
    Server sends (e.g.): Server: Apache/1.3.0 (UNIX) +
    +
    ServerTokens Full (or not specified) +
    +
    Server sends (e.g.): Server: Apache/1.3.0 (UNIX) PHP/3.0 MyMod/1.2 +
    +
    +

    +This setting applies to the entire server, and cannot be enabled or +disabled on a virtualhost-by-virtualhost basis. +

    +

    +By default, this information is included in the server +identity string. +

    + +
    +

    ServerType directive