diff options
author | Sander Temme <sctemme@apache.org> | 2009-11-07 00:18:33 +0100 |
---|---|---|
committer | Sander Temme <sctemme@apache.org> | 2009-11-07 00:18:33 +0100 |
commit | c994d6b55997e0451c3bb8b401a5f73e34701d20 (patch) | |
tree | 34d1d2ee07cce9834511bace08b7c44cc6505672 /docs/manual/new_features_2_4.xml | |
parent | * modules/ssl/ssl_engine_kernel.c (ssl_callback_Info): Add parentheses (diff) | |
download | apache2-c994d6b55997e0451c3bb8b401a5f73e34701d20.tar.xz apache2-c994d6b55997e0451c3bb8b401a5f73e34701d20.zip |
Some additional new feature goodness to be part of 2.4. Please review
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@833596 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/new_features_2_4.xml')
-rw-r--r-- | docs/manual/new_features_2_4.xml | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/docs/manual/new_features_2_4.xml b/docs/manual/new_features_2_4.xml index 36481cabb5..2230a02de0 100644 --- a/docs/manual/new_features_2_4.xml +++ b/docs/manual/new_features_2_4.xml @@ -39,26 +39,52 @@ <dd>It is now possible to specify <directive module="core" >KeepAliveTimeout</directive> in milliseconds. </dd> + + <dt>Simple MPM</dt> + <dd>Cleanroom MPM implementation with advanced thread pool management</dd> + + <dt>Loadable MPMs</dt> + <dd>Multiple MPMs can now be built as loadable modules at compile time. + The MPM of choice can be configured at run time.</dd> + </dl> </section> <section id="module"> <title>Module Enhancements</title> <dl> - <dt><module>mod_ssl</module>: Support for OCSP validation of client certificates</dt> + <dt><module>mod_ssl</module></dt> <dd><module>mod_ssl</module> can now be configured to use an OCSP server to check the validation status of a client certificate. The default responder is configurable, along with the decision on whether to prefer the responder designated in the client certificate itself.</dd> + + <dd><module>mod_ssl</module> now also supports OCSP stapling, where the + server pro-actively obtains an OCSP verification of its certificate and + transmits that to the client during the handshake. </dd> + + <dd><module>mod_ssl</module> can now be configured to share SSL Session + data between servers through memcached</dd> + + <dt><module>mod_lua</module></dt> + + <dd>Embeds the <a href="http://www.lua.org/">Lua</a> language into httpd, + for configuration and small business logic functions.</dd> + + <dt><module>mod_proxy_fcgi</module></dt> + + <dd>FastCGI Protocol backend for <module>mod_proxy</module></dd> </dl> </section> <section id="programs"> <title>Program Enhancements</title> - <!-- <dl> - </dl> --> + <dl> + <dt>fcgistarter</dt> + <dd>FastCGI deamon starter utility</dd> + </dl> </section> <section id="developer"> |