From f279daa8f92409e5fd573bcd416d7d385197fd6c Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Sat, 10 Feb 2001 04:04:12 +0000 Subject: Add some VERY basic filter documentation. See followup discussion on apache-docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88047 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html | 69 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) (limited to 'docs/manual/mod/core.html') diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index e0fe26a51a..9bf147aa04 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -73,6 +73,8 @@ always available.
  • ServerSignature
  • ServerTokens
  • ServerType +
  • SetInputFilter +
  • SetOutputFilter
  • TimeOut
  • UseCanonicalName
  • <VirtualHost> @@ -2479,6 +2481,73 @@ subsequent connections. If you intend running Apache to serve a busy site, standalone will probably be your only option.


    +

    SetInputFilter directive

    +

    Syntax: SetInputFilter filter +[filter] ...
    +Default: none
    +Context: directory
    +Status: core

    + +

    The SetInputFilter directive sets the filters +which will process client requests when they are received by the +server.

    + +

    The order of the arguments determines the order in which the +filters will process the content.

    + +

    See also the Filters documentation.

    + + +


    +

    SetOutputFilter directive

    +

    Syntax: SetOutputFilter filter +[filter] ...
    +Default: none
    +Context: directory
    +Status: core

    + +

    The SetOutputFilter directive sets the filters which +will process responses from the server before they are sent to the +client. For example, the following configuration will process +all files in the /www/data/ directory for +server-side includes.

    + +
    +<Directory /www/data/>
    +  SetOutputFilter INCLUDES
    +</Directory> +
    + +

    The order of the arguments determines the order in which the +filters will process the content.

    + +

    See also the Filters documentation.

    + +


    TimeOut directive