From: André Malo
-# mod_ext_filter directive to define a filter to HTML-ize text/c files -# using the external program /usr/bin/enscript, with the type of the -# result set to text/html -ExtFilterDefine c-to-html mode=output intype=text/c outtype=text/html \ - cmd="/usr/bin/enscript --color -W html -Ec -o - -" - -<Directory "/export/home/trawick/apacheinst/htdocs/c"> - -# core directive to cause the new filter to be run on output -SetOutputFilter c-to-html - -# mod_mime directive to set the type of .c files to text/c -AddType text/c .c - -# mod_ext_filter directive to set the debug level just high -# enough to see a log message per request showing the configuration -# in force -ExtFilterOptions DebugLevel=1 - -</Directory> -
-# mod_ext_filter directive to define the external filter -ExtFilterDefine gzip mode=output cmd=/bin/gzip - -<Location /gzipped> - -# core directive to cause the gzip filter to be run on output -SetOutputFilter gzip - -# mod_header directive to add "Content-Encoding: gzip" header field -Header set Content-Encoding gzip - -</Location> -
Note: this gzip example is just for the purposes of illustration.
- Please refer to
-# mod_ext_filter directive to define a filter which runs everything -# through cat; cat doesn't modify anything; it just introduces extra -# pathlength and consumes more resources -ExtFilterDefine slowdown mode=output cmd=/bin/cat preservescontentlength - -<Location /> - -# core directive to cause the slowdown filter to be run several times on -# output -SetOutputFilter slowdown slowdown slowdown - -</Location> -
-# mod_ext_filter directive to define a filter which replaces text in -# the response -ExtFilterDefine fixtext mode=output cmd="/bin/sed s/verdana/arial/g" intype=text/html - -<Location /> - -# core directive to cause the fixtext filter to be run on output -# output -SetOutputFilter fixtext - -</Location> -
-# Trace the data read and written by mod_deflate for a particular -# client (IP 192.168.1.31) experiencing compression problems. -# This filter will trace what goes into mod_deflate. -ExtFilterDefine tracebefore cmd="/bin/tracefilter.pl /tmp/tracebefore" \ - EnableEnv=trace_this_client -# This filter will trace what goes after mod_deflate. Note that without -# the ftype parameter, the default filter type of AP_FTYPE_RESOURCE would -# cause the filter to be placed *before* mod_deflate in the filter -# chain. Giving it a numeric value slightly higher than -# AP_FTYPE_CONTENT_SET will ensure that it is placed after mod_deflate. -ExtFilterDefine traceafter cmd="/bin/tracefilter.pl /tmp/traceafter" \ - EnableEnv=trace_this_client ftype=21 - -<Directory /usr/local/docs> - SetEnvIf Remote_Addr 192.168.1.31 trace_this_client - SetOutputFilter tracebefore;deflate;traceafter -</Directory> -
-#!/usr/local/bin/perl -w - -use strict; - -open(SAVE, ">$ARGV[0]") or die "can't open $ARGV[0]: $?"; - -while (<STDIN>) -{ - print SAVE $_; - print $_; -} - -close(SAVE); -
Note: this gzip example is just for the purposes of illustration.
+ Please refer to
filtername specifies the name of the filter being +
filtername specifies the name of the filter being
defined. This name can then be used in SetOutputFilter
directives. It must be unique among all registered filters.
At the present time, no error is reported by the
@@ -184,48 +215,48 @@ close(SAVE);
Subsequent parameters can appear in any order and define the
external command to run and certain other characteristics. The
- only required parameter is cmd=. These parameters
+ only required parameter is cmd=
. These parameters
are:
-
cmd=cmdline
cmd=
keyword allows you to specify the
external command to run. If there are arguments after the
program name, the command line should be surrounded in
- quotation marks (e.g., cmd="/bin/mypgm arg1 arg2".
- Normal shell quoting is not necessary since the program is
- run directly, bypassing the shell. Program arguments are
- blank-delimited. A backslash can be used to escape blanks
- which should be part of a program argument. Any backslashes
- which are part of the argument must be escaped with backslash
- themselves. In addition to the standard CGI environment
+ quotation marks (e.g., cmd="/bin/mypgm
+ arg1 arg2"
. Normal shell quoting is
+ not necessary since the program is run directly, bypassing the shell.
+ Program arguments are blank-delimited. A backslash can be used to
+ escape blanks which should be part of a program argument. Any
+ backslashes which are part of the argument must be escaped with
+ backslash themselves. In addition to the standard CGI environment
variables, DOCUMENT_URI, DOCUMENT_PATH_INFO, and
QUERY_STRING_UNESCAPED will also be set for the program.mode=mode
mode
should be output
for now (the
+ default). In the future, mode=input
will be used to
specify a filter for request bodies.intype=imt
intype=
is
specified, the filter will be disabled for documents of other
types.outtype=imt
PreservesContentLength
PreservesContentLength
keyword specifies
that the filter preserves the content length. This is not the
@@ -233,7 +264,7 @@ close(SAVE);
event that the filter doesn't modify the length, this keyword
should be specified.ftype=filtertype
disableenv=env
enableenv=env
The mod_ext_filter
.
- Option can be one of
DebugLevel=n
DebugLevel
keyword allows you to specify
the level of debug messages generated by
- mod_ext_filter
. By default, no debug messages
+ DebugLevel=0
. With higher numbers, more debug
messages are generated, and server performance will be
@@ -283,12 +313,12 @@ close(SAVE);
described with the definitions of the DBGLVL_ constants
near the beginning of mod_ext_filter.c
.
- Note: The core directive LogLevel should be used to - cause debug messages to be stored in the Apache error - log.
+Note: The core directive
LogStderr | NoLogStderr
LogStderr
keyword specifies that
messages written to standard error by the external filter
@@ -296,9 +326,9 @@ close(SAVE);
NoLogStderr
disables this feature.Messages written to the filter's standard error will be stored in the Apache error log. No debug messages will be generated by