Re: Two filters per server
Mark Brown (mbrown@OpenMarket.com)
Mon, 27 May 1996 16:35:07 -0400
Message-Id: <199605272035.QAA25208@breckenridge.openmarket.com>
To: Nickolay Saukh <nms@nns.ru>
Subject: Re: Two filters per server
Date: Mon, 27 May 1996 16:35:07 -0400
From: Mark Brown <mbrown@OpenMarket.com>
How to configure Apache to have two filters. For example,
fcgi1 for type .x1 nad fcgi2 for type .x2.
mod_fastcgi doesn't support the filter role. PHP/FI's FastCGI
support is an example of how to do something filter-like on
Apache using FastCGI responders. See http://www.vex.net/php for
more information.
On the Open Market WebServer you can configure as many filters
as you like. For instance, to filter all .sgml documents:
MimeType application/x-sgml-filter sgml
AppClass MySgmlFilter $bin/sgmlfilter
Filter MySgmlFilter application/x-sgml-filter
You would repeat this pattern for each MIME-type to be filtered.
--mark