diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-08-28 17:45:01 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-08-28 17:45:01 +0200 |
commit | 12912e8dbb85b3abca517d4300019d6e181d3995 (patch) | |
tree | d1d4e75ad925da99e7ef0d918e202c0afefbcf30 | |
parent | Also in the prior commit (1.338) (diff) | |
download | apache2-12912e8dbb85b3abca517d4300019d6e181d3995.tar.xz apache2-12912e8dbb85b3abca517d4300019d6e181d3995.zip |
This is the same granularity of control as mod_mime gave to set handlers
(and now AddInputFilter and AddOutputFilter by extension) so this seems
entirely appropriate in the core as well. Options FileInfo is required
to change the processing behavior of files.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90760 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | server/core.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/server/core.c b/server/core.c index 63c4dc9cba..ac1dcb0d79 100644 --- a/server/core.c +++ b/server/core.c @@ -2817,14 +2817,9 @@ AP_INIT_TAKE12("RLimitNPROC", set_limit_nproc, AP_INIT_TAKE12("RLimitNPROC", no_set_limit, NULL, OR_ALL, "soft/hard limits for max number of processes per uid"), #endif -/* XXX These should be allowable in .htaccess files, but currently it won't - * play well with the Options stuff. Until that is fixed, I would prefer - * to leave it just in the conf file. Other should feel free to disagree - * with me. Rbb. - */ -AP_INIT_ITERATE("SetOutputFilter", add_filter, NULL, ACCESS_CONF, +AP_INIT_ITERATE("SetOutputFilter", add_filter, NULL, OR_FILEINFO, "filters to be run"), -AP_INIT_ITERATE("SetInputFilter", add_input_filter, NULL, ACCESS_CONF, +AP_INIT_ITERATE("SetInputFilter", add_input_filter, NULL, OR_FILEINFO, "filters to be run on the request body"), /* |