From: Marc Slemko
Date: Wed, 21 Oct 1998 05:57:58 +0000 (+0000)
Subject: Add a "default-handler" handler that calls the default_hander()
X-Git-Tag: 1.3.4~44
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31860d70c0805d79e62c28bf4d5e80da9d76c43a;p=thirdparty%2Fapache%2Fhttpd.git
Add a "default-handler" handler that calls the default_hander()
function which is normally called for static content. This allows
you to override a specific handler. This is not a complete solution to
being able to "unconfigure" things as asked for in PR#2979, but it is
still useful.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82288 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/handler.html b/docs/manual/handler.html
index 84cd97c06b1..5a0e1486a84 100644
--- a/docs/manual/handler.html
+++ b/docs/manual/handler.html
@@ -36,6 +36,10 @@ HREF="mod/mod_actions.html#action">Action directive. The built-in
handlers in the standard distribution are as follows:
+- default-handler:
+ Send the file using the
default_handler()
, which is the
+ handler used by default to handle static content.
+ (core)
- send-as-is:
Send file with HTTP headers as is.
(mod_asis)
diff --git a/docs/manual/handler.html.en b/docs/manual/handler.html.en
index 84cd97c06b1..5a0e1486a84 100644
--- a/docs/manual/handler.html.en
+++ b/docs/manual/handler.html.en
@@ -36,6 +36,10 @@ HREF="mod/mod_actions.html#action">Action directive. The built-in
handlers in the standard distribution are as follows:
+- default-handler:
+ Send the file using the
default_handler()
, which is the
+ handler used by default to handle static content.
+ (core)
- send-as-is:
Send file with HTTP headers as is.
(mod_asis)