From: Rich Bowen Date: Thu, 4 Nov 2010 18:35:31 +0000 (+0000) Subject: Documents undocumented directive. PR42912 X-Git-Tag: 2.3.9~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d98fa47103c8f97e64bf2c943efe694150866e82;p=thirdparty%2Fapache%2Fhttpd.git Documents undocumented directive. PR42912 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1031133 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 0587c862b78..aa06a9fbf00 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -79,6 +79,7 @@ available
  • Mutex
  • NameVirtualHost
  • Options
  • +
  • Protocol
  • RLimitCPU
  • RLimitMEM
  • RLimitNPROC
  • @@ -179,6 +180,10 @@ On Windows from Apache httpd 2.3.3 and later. filters.

    +

    See also

    +
    top

    AcceptPathInfo Directive

    @@ -3051,6 +3056,38 @@ directory

    The default in the absence of any other settings is All.

    +
    +
    top
    +

    Protocol Directive

    + + + + + + + +
    Description:Protocol for a listening socket
    Syntax:Protocol protocol
    Context:server config, virtual host
    Status:Core
    Module:core
    Compatibility:Available in Apache 2.1.5 and later. +On Windows from Apache 2.3.3 and later.
    +

    This directive specifies the protocol used for a specific listening socket. + The protocol is used to determine which module should handle a request, and + to apply protocol specific optimizations with the AcceptFilter + directive.

    + +

    You only need to set the protocol if you are running on non-standard ports, otherwise http is assumed for port 80 and https for port 443.

    + +

    For example, if you are running https on a non-standard port, specify the protocol explicitly:

    + +

    + Protocol https +

    + +

    You can also specify the protocol using the Listen directive.

    + +

    See also

    +
    top

    RLimitCPU Directive

    diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index b99ef076bfd..c56af0e18cd 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -101,6 +101,7 @@ On Windows from Apache httpd 2.3.3 and later. filters.

    +Protocol @@ -3060,6 +3061,35 @@ directory + +Protocol +Protocol for a listening socket +Protocol protocol +server configvirtual host +Available in Apache 2.1.5 and later. +On Windows from Apache 2.3.3 and later. + + +

    This directive specifies the protocol used for a specific listening socket. + The protocol is used to determine which module should handle a request, and + to apply protocol specific optimizations with the AcceptFilter + directive.

    + +

    You only need to set the protocol if you are running on non-standard ports, otherwise http is assumed for port 80 and https for port 443.

    + +

    For example, if you are running https on a non-standard port, specify the protocol explicitly:

    + + + Protocol https + + +

    You can also specify the protocol using the Listen directive.

    +
    +AcceptFilter +Listen +
    + + RLimitCPU Limits the CPU consumption of processes launched