Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 87291 invoked by uid 500); 24 Nov 2002 00:36:13 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 87265 invoked by uid 500); 24 Nov 2002 00:36:13 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 24 Nov 2002 00:36:12 -0000 Message-ID: <20021124003612.94986.qmail@icarus.apache.org> From: nd@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/mod core.html.en mod_ext_filter.html.en mod_mime.html.en quickreference.html.en X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N nd 2002/11/23 16:36:12 Modified: docs/manual Tag: APACHE_2_0_BRANCH logs.html.en mpm.html.en upgrading.html.en docs/manual/mod Tag: APACHE_2_0_BRANCH core.html.en mod_ext_filter.html.en mod_mime.html.en quickreference.html.en Log: apply transformation of the recent changes to this branch, too. Revision Changes Path No revision No revision 1.18.2.1 +5 -16 httpd-2.0/docs/manual/logs.html.en Index: logs.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/logs.html.en,v retrieving revision 1.18 retrieving revision 1.18.2.1 diff -u -r1.18 -r1.18.2.1 --- logs.html.en 19 Sep 2002 18:02:35 -0000 1.18 +++ logs.html.en 24 Nov 2002 00:36:11 -0000 1.18.2.1 @@ -429,22 +429,6 @@ that piped log programs usually run as root. It is therefore very important to keep the programs simple and secure.

-

Some simple examples using piped logs:

- -

- # compressed logs
- CustomLog "|/usr/bin/gzip -c >> - /var/log/access_log.gz" common
- # almost-real-time name resolution
- CustomLog "|/usr/local/apache/bin/logresolve >> - /var/log/access_log" common -

- -

Notice that quotes are used to enclose the entire command - that will be called for the pipe. Although these examples are - for the access log, the same technique can be used for the - error log.

-

One important use of piped logs is to allow log rotation without having to restart the server. The Apache HTTP Server includes a simple program called rotatelogs for this @@ -456,6 +440,11 @@ /var/log/access_log 86400" common

+

Notice that quotes are used to enclose the entire command + that will be called for the pipe. Although these examples are + for the access log, the same technique can be used for the + error log.

+

A similar, but much more flexible log rotation program called cronolog is available at an external site.

1.16.2.1 +1 -0 httpd-2.0/docs/manual/mpm.html.en Index: mpm.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mpm.html.en,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -u -r1.16 -r1.16.2.1 --- mpm.html.en 10 Sep 2002 02:03:38 -0000 1.16 +++ mpm.html.en 24 Nov 2002 00:36:11 -0000 1.16.2.1 @@ -79,6 +79,7 @@ + 1.34.2.1 +6 -0 httpd-2.0/docs/manual/upgrading.html.en Index: upgrading.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/upgrading.html.en,v retrieving revision 1.34 retrieving revision 1.34.2.1 diff -u -r1.34 -r1.34.2.1 --- upgrading.html.en 21 Oct 2002 18:24:34 -0000 1.34 +++ upgrading.html.en 24 Nov 2002 00:36:11 -0000 1.34.2.1 @@ -127,6 +127,12 @@ The same functionality is available through the FancyIndexing option to the IndexOptions directive. + +
  • The MultiViews content-negotiation technique provided by + mod_negotiation has become more strict in its + default file matching. It will select only from negotiable + files. The old behavior can be restored using the MultiviewsMatch directive.
  • +
    top

    Misc Changes

    No revision No revision 1.46.2.1 +2 -3 httpd-2.0/docs/manual/mod/core.html.en Index: core.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/core.html.en,v retrieving revision 1.46 retrieving revision 1.46.2.1 diff -u -r1.46 -r1.46.2.1 --- core.html.en 17 Nov 2002 20:43:12 -0000 1.46 +++ core.html.en 24 Nov 2002 00:36:11 -0000 1.46.2.1 @@ -238,11 +238,10 @@ which directives declared in that file can override earlier access information.

    -

    Only available in Location sections

    +

    Only available in Directory sections

    AllowOverride is valid only in <Directory> - sections, not in <Location> or <Files> sections, as implied by the - Context section above. + sections, not in <Location> or <Files> sections.

    When this directive is set to None, then 1.17.2.1 +9 -14 httpd-2.0/docs/manual/mod/mod_ext_filter.html.en Index: mod_ext_filter.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_ext_filter.html.en,v retrieving revision 1.17 retrieving revision 1.17.2.1 diff -u -r1.17 -r1.17.2.1 --- mod_ext_filter.html.en 17 Nov 2002 01:43:20 -0000 1.17 +++ mod_ext_filter.html.en 24 Nov 2002 00:36:12 -0000 1.17.2.1 @@ -10,20 +10,14 @@

    BeOSbeos
    Netwarempm_netware
    OS/2mpmt_os2
    Unixprefork
    Windowsmpm_winnt
    Extension
    Module�Identifier: ext_filter_module
    Source�File: mod_ext_filter.c

    Summary

    -

    This is an experimental module and should - be used with care. Test your mod_ext_filter - configuration carefully to ensure that it performs the desired - function. You may wish to review - this information for background on the Apache filtering - model.

    -

    mod_ext_filter presents a simple and familiar - programming model for filters. With this module, a program - which reads from stdin and writes to stdout (i.e., a Unix-style - filter command) can be a filter for Apache. This filtering - mechanism is much slower than using a filter which is specially - written for the Apache API and runs inside of the Apache server - process, but it does have the following benefits:

    + programming model for filters. With + this module, a program which reads from stdin and writes to stdout + (i.e., a Unix-style filter command) can be a filter for + Apache. This filtering mechanism is much slower than using a + filter which is specially written for the Apache API and runs + inside of the Apache server process, but it does have the + following benefits:

    Topics

    See also

    top

    Examples

    Generating HTML from some other type of response

    1.21.2.1 +2 -1 httpd-2.0/docs/manual/mod/mod_mime.html.en Index: mod_mime.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_mime.html.en,v retrieving revision 1.21 retrieving revision 1.21.2.1 diff -u -r1.21 -r1.21.2.1 --- mod_mime.html.en 5 Nov 2002 19:05:22 -0000 1.21 +++ mod_mime.html.en 24 Nov 2002 00:36:12 -0000 1.21.2.1 @@ -497,7 +497,8 @@ The types of files that will be included when searching for a matching file with MultiViewsSyntax: MultiviewsMatch - [NegotiatedOnly] [Handlers] [Filters] [Any]Context: + [NegotiatedOnly] [Handlers] [Filters] [Any]Default: + MultiviewsMatch NegotiatedOnlyContext: server config, virtual host, directory, .htaccessOverride: FileInfoStatus: BaseModule: 1.47.2.1 +1 -1 httpd-2.0/docs/manual/mod/quickreference.html.en Index: quickreference.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/mod/quickreference.html.en,v retrieving revision 1.47 retrieving revision 1.47.2.1 diff -u -r1.47 -r1.47.2.1 --- quickreference.html.en 18 Nov 2002 00:29:45 -0000 1.47 +++ quickreference.html.en 24 Nov 2002 00:36:12 -0000 1.47.2.1 @@ -405,7 +405,7 @@ MMapFile file-path [file-path] ...sXMap a list of files into memory at startup time ModMimeUsePathInfo On|OffdBTells mod_mime to treat path_info components as part of the filename MultiviewsMatch - [NegotiatedOnly] [Handlers] [Filters] [Any]svdhBThe types of files that will be included when + [NegotiatedOnly] [Handlers] [Filters] [Any] NegotiatedOnly svdhBThe types of files that will be included when searching for a matching file with MultiViews NameVirtualHost addr[:port]sCDesignates an IP address for name-virtual hosting