From: Rich Bowen When used inside a <Directory>, <DirectoryMatch>, <Files>, or <FilesMatch> section in the main
+ configuration files, or in a .htaccess file.
+ In per-directory context, directives apply only to the
+ directory (or set of files) they are associated with.
+ See: Configuration Sections
+ <Location> section, the first argument is omitted and the local
- directory is obtained from the <Location>. The same will occur inside a
+ directory is obtained from the <Location>. When used outside a <Location> or <LocationMatch> section, the
+ path argument is required. The same will occur inside a
<LocationMatch> section;
however, ProxyPass does not interpret the regexp as such, so it is necessary
to use ProxyPassMatch in this situation instead.
When used inside a <LocationMatch> section, the first argument is omitted and the
- regexp is obtained from the <LocationMatch>.
<LocationMatch>. When used outside a <Location> or <LocationMatch> section, the
+ regex argument is required.
If you require a more flexible reverse-proxy configuration, see the
RewriteRule directive with the
@@ -1937,7 +1939,8 @@ ProxyPassReverseCookiePath "/" "/mirror/foo/"
URL.
When used inside a <Location> section, the first argument is omitted and the local
- directory is obtained from the <Location>. The same occurs inside a <LocationMatch> section, but will probably not work as
+ directory is obtained from the <Location>. When used outside a <Location> or <LocationMatch> section, the
+ path argument is required. The same occurs inside a <LocationMatch> section, but will probably not work as
intended, as ProxyPassReverse will interpret the regexp literally as a
path; if needed in this situation, specify the ProxyPassReverse outside
the section or in a separate <Location> section.
mod_ssl provides a few authentication providers for use
- with mod_authz_core's
+
mod_ssl provides the following authorization providers
+ for use with mod_authz_core's
Require directive.
The ssl provider denies access if a connection is not
- encrypted with SSL. This is similar to the
- SSLRequireSSL directive.
SSLRequireSSL directive, this can be
+ combined with other Require directives in
+ RequireAny or
+ RequireAll blocks.
Require ssl@@ -367,8 +370,8 @@ directive.
The ssl provider allows access if the user is
- authenticated with a valid client certificate. This is only
+
The ssl-verify-client provider allows access if the
+ user is authenticated with a valid client certificate. This is only
useful if SSLVerifyClient optional is in effect.
The following example grants access if the user is authenticated
diff --git a/docs/manual/mod/mod_ssl.xml.es b/docs/manual/mod/mod_ssl.xml.es
index a5e772a579..82e32b3ea0 100644
--- a/docs/manual/mod/mod_ssl.xml.es
+++ b/docs/manual/mod/mod_ssl.xml.es
@@ -1,7 +1,7 @@
-
+
diff --git a/docs/manual/mod/mod_ssl.xml.fr b/docs/manual/mod/mod_ssl.xml.fr
index 21e1526265..d02426a102 100644
--- a/docs/manual/mod/mod_ssl.xml.fr
+++ b/docs/manual/mod/mod_ssl.xml.fr
@@ -1,7 +1,7 @@
-
+
diff --git a/docs/manual/mod/mpm_common.html.en.utf8 b/docs/manual/mod/mpm_common.html.en.utf8
index f2839af7d9..fe7030ab4d 100644
--- a/docs/manual/mod/mpm_common.html.en.utf8
+++ b/docs/manual/mod/mpm_common.html.en.utf8
@@ -503,6 +503,26 @@ simultaneously
25 (ThreadsPerChild). Therefore, to increase MaxRequestWorkers to a value that requires more than 16 processes,
you must also raise ServerLimit.
For threaded and hybrid MPMs, MaxRequestWorkers
+ must be at least as large as
+ ThreadsPerChild, and
+ should be an integer multiple of
+ ThreadsPerChild. If it
+ is not a multiple, the server will round it down to the nearest
+ multiple at startup and log a warning.
+ WARNING: MaxRequestWorkers of 10 is less than ThreadsPerChild
+ of 25, increasing to 25. MaxRequestWorkers must be at least as
+ large as the number of threads in a single server.
+
+ WARNING: MaxRequestWorkers of 90 is not an integer multiple of
+ ThreadsPerChild of 25, decreasing to nearest multiple 75, for a
+ maximum of 3 servers.
+
MaxRequestWorkers was called
MaxClients before version 2.3.13. The old name is still
supported.
The value of MaxRequestWorkers
+ must be an integer multiple of ThreadsPerChild.
+ See MaxRequestWorkers for
+ details.