summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2011-11-12 01:12:50 +0100
committerRainer Jung <rjung@apache.org>2011-11-12 01:12:50 +0100
commitcd94ba9c6958243c61d2bae4ae7d682a162d354f (patch)
tree406b520020e50bf33b7fd2ec83bbf1ede9a53267
parentUse the right lua scope when used as a hook. (diff)
downloadapache2-cd94ba9c6958243c61d2bae4ae7d682a162d354f.tar.xz
apache2-cd94ba9c6958243c61d2bae4ae7d682a162d354f.zip
Change module sets and default activation status:
1) Promoted from "most" to "few" - mod_headers 2) Demoted from "yes" to "most" - mod_actions - mod_allowmethods - mod_auth_form - mod_buffer - mod_cgi(d) - mod_include - mod_negotiation - mod_ratelimit - mod_request - mod_userdir Remember: default module set is "most", but only the LoadModule lines of all modules except "yes" are commented out by default. The following modules will now be loaded by default: - mod_access_compat - mod_alias - mod_auth_basic - mod_authn_core - mod_authn_file - mod_authz_core - mod_authz_groupfile - mod_authz_host - mod_authz_user - mod_autoindex - mod_dir - mod_env - mod_filter - mod_headers - mod_log_config - mod_mime - mod_mpm_event - mod_reqtimeout - mod_setenvif - mod_status - mod_unixd - mod_version git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1201111 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/aaa/config.m44
-rw-r--r--modules/filters/config.m48
-rw-r--r--modules/generators/config5.m44
-rw-r--r--modules/mappers/config9.m46
-rw-r--r--modules/metadata/config.m42
5 files changed, 12 insertions, 12 deletions
diff --git a/modules/aaa/config.m4 b/modules/aaa/config.m4
index aa324ccb0d..4f3ba4f739 100644
--- a/modules/aaa/config.m4
+++ b/modules/aaa/config.m4
@@ -63,7 +63,7 @@ APACHE_MODULE(access_compat, mod_access compatibility, , , yes)
dnl these are the front-end authentication modules
APACHE_MODULE(auth_basic, basic authentication, , , yes)
-APACHE_MODULE(auth_form, form authentication, , , yes)
+APACHE_MODULE(auth_form, form authentication, , , most)
APACHE_MODULE(auth_digest, RFC2617 Digest authentication, , , most, [
APR_CHECK_APR_DEFINE(APR_HAS_RANDOM)
if test $ac_cv_define_APR_HAS_RANDOM = "no"; then
@@ -73,7 +73,7 @@ APACHE_MODULE(auth_digest, RFC2617 Digest authentication, , , most, [
fi
])
-APACHE_MODULE(allowmethods, restrict allowed HTTP methods, , , yes)
+APACHE_MODULE(allowmethods, restrict allowed HTTP methods, , , most)
APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])
diff --git a/modules/filters/config.m4 b/modules/filters/config.m4
index 2bea5689e3..4ef2d3a59f 100644
--- a/modules/filters/config.m4
+++ b/modules/filters/config.m4
@@ -4,13 +4,13 @@ dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
APACHE_MODPATH_INIT(filters)
-APACHE_MODULE(buffer, Filter Buffering, , , yes)
+APACHE_MODULE(buffer, Filter Buffering, , , most)
APACHE_MODULE(data, RFC2397 data encoder, , , )
-APACHE_MODULE(ratelimit, Output Bandwidth Limiting, , , yes)
+APACHE_MODULE(ratelimit, Output Bandwidth Limiting, , , most)
APACHE_MODULE(reqtimeout, Limit time waiting for request from client, , , yes)
APACHE_MODULE(ext_filter, external filter module, , , most)
-APACHE_MODULE(request, Request Body Filtering, , , yes)
-APACHE_MODULE(include, Server Side Includes, , , yes)
+APACHE_MODULE(request, Request Body Filtering, , , most)
+APACHE_MODULE(include, Server Side Includes, , , most)
APACHE_MODULE(filter, Smart Filtering, , , yes)
APACHE_MODULE(reflector, Reflect request through the output filter stack, , , )
APACHE_MODULE(substitute, response content rewrite-like filtering, , , most)
diff --git a/modules/generators/config5.m4 b/modules/generators/config5.m4
index e87a570975..bf295217e0 100644
--- a/modules/generators/config5.m4
+++ b/modules/generators/config5.m4
@@ -32,7 +32,7 @@ case $host in
esac
if test $cgid_needed = "yes"; then
- APACHE_MODULE(cgid, CGI scripts. Enabled by default with threaded MPMs, , , yes, [
+ APACHE_MODULE(cgid, CGI scripts. Enabled by default with threaded MPMs, , , most, [
case $host in
*-solaris2*)
case `uname -r` in
@@ -72,7 +72,7 @@ For more info: <http://issues.apache.org/bugzilla/show_bug.cgi?id=34264>])
])
APACHE_MODULE(cgi, CGI scripts. Enabled by default with non-threaded MPMs, , , no)
else
- APACHE_MODULE(cgi, CGI scripts. Enabled by default with non-threaded MPMs, , , yes)
+ APACHE_MODULE(cgi, CGI scripts. Enabled by default with non-threaded MPMs, , , most)
APACHE_MODULE(cgid, CGI scripts. Enabled by default with threaded MPMs, , , no)
fi
diff --git a/modules/mappers/config9.m4 b/modules/mappers/config9.m4
index 0564daad1e..55a97ab993 100644
--- a/modules/mappers/config9.m4
+++ b/modules/mappers/config9.m4
@@ -5,12 +5,12 @@ dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
APACHE_MODPATH_INIT(mappers)
APACHE_MODULE(vhost_alias, mass virtual hosting module, , , most)
-APACHE_MODULE(negotiation, content negotiation, , , yes)
+APACHE_MODULE(negotiation, content negotiation, , , most)
APACHE_MODULE(dir, directory request handling, , , yes)
APACHE_MODULE(imagemap, server-side imagemaps, , , no)
-APACHE_MODULE(actions, Action triggering on requests, , , yes)
+APACHE_MODULE(actions, Action triggering on requests, , , most)
APACHE_MODULE(speling, correct common URL misspellings, , , most)
-APACHE_MODULE(userdir, mapping of requests to user-specific directories, , , yes)
+APACHE_MODULE(userdir, mapping of requests to user-specific directories, , , most)
APACHE_MODULE(alias, mapping of requests to different filesystem parts, , , yes)
APACHE_MODULE(rewrite, rule based URL manipulation, , , most)
diff --git a/modules/metadata/config.m4 b/modules/metadata/config.m4
index 66caf81464..25d1aece65 100644
--- a/modules/metadata/config.m4
+++ b/modules/metadata/config.m4
@@ -8,7 +8,7 @@ APACHE_MODULE(env, clearing/setting of ENV vars, , , yes)
APACHE_MODULE(mime_magic, automagically determining MIME type)
APACHE_MODULE(cern_meta, CERN-type meta files, , , no)
APACHE_MODULE(expires, Expires header control, , , most)
-APACHE_MODULE(headers, HTTP header control, , , most)
+APACHE_MODULE(headers, HTTP header control, , , yes)
APACHE_MODULE(ident, RFC 1413 identity check, , , no)
APACHE_MODULE(usertrack, user-session tracking, , , , [