From: André Malo Date: Wed, 29 Jan 2014 13:47:43 +0000 (+0000) Subject: update transformation X-Git-Tag: 2.2.27~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcc860dc496b778ea164b957d6a1a2f42261de5b;p=thirdparty%2Fapache%2Fhttpd.git update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1562442 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/man/suexec.8 b/docs/man/suexec.8 index 690b8f988d6..04ac0e6e57c 100644 --- a/docs/man/suexec.8 +++ b/docs/man/suexec.8 @@ -19,7 +19,7 @@ .el .ne 3 .IP "\\$1" \\$2 .. -.TH "SUEXEC" 8 "2005-11-13" "Apache HTTP Server" "suexec" +.TH "SUEXEC" 8 "2014-01-20" "Apache HTTP Server" "suexec" .SH NAME suexec \- Switch user before executing external programs @@ -36,7 +36,7 @@ suexec \- Switch user before executing external programs suexec is used by the Apache HTTP Server to switch to another user before executing CGI programs\&. In order to achieve this, it must run as root\&. Since the HTTP daemon normally doesn't run as root, the suexec executable needs the setuid bit set and must be owned by root\&. It should never be writable for any other person than root\&. .PP -For further information about the concepts and and the security model of suexec please refer to the suexec documentation (http://httpd\&.apache\&.org/docs/2\&.2/suexec\&.html)\&. +For further information about the concepts and the security model of suexec please refer to the suexec documentation (http://httpd\&.apache\&.org/docs/2\&.2/suexec\&.html)\&. .SH "OPTIONS" diff --git a/docs/manual/mod/mod_authz_host.html.fr b/docs/manual/mod/mod_authz_host.html.fr index 2dca2881f96..74df79b7b05 100644 --- a/docs/manual/mod/mod_authz_host.html.fr +++ b/docs/manual/mod/mod_authz_host.html.fr @@ -29,8 +29,6 @@  ja  |  ko 

-
Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.
@@ -93,6 +91,8 @@ du serveur +
Description:Autorisations de groupe basées sur l'hôte (nom ou adresse IP)
Statut:Base
AllowOverride:Limit
Statut:Base
Module:mod_authz_host
Compatibilité:Le support de la négation de env=env-variable +est assuré depuis la version 2.2.10 du serveur HTTP Apache

La directive Allow permet de contrôler quels hôtes peuvent diff --git a/docs/manual/mod/mod_authz_host.xml.meta b/docs/manual/mod/mod_authz_host.xml.meta index d424fa82422..5027568fabb 100644 --- a/docs/manual/mod/mod_authz_host.xml.meta +++ b/docs/manual/mod/mod_authz_host.xml.meta @@ -8,7 +8,7 @@ en - fr + fr ja ko diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en index d085530d64a..e20e5c9e195 100644 --- a/docs/manual/mod/mod_proxy.html.en +++ b/docs/manual/mod/mod_proxy.html.en @@ -646,6 +646,18 @@ directly </Proxy>

+

Differences from the Location configuration section

+

A backend URL matches the configuration section if it begins with the + the wildcard-url string, even if the last path segment in the + directive only matches a prefix of the backend URL. For example, + <Proxy http://example.com/foo> matches all of + http://example.com/foo, http://example.com/foo/bar, and + http://example.com/foobar. The matching of the final URL differs + from the behavior of the <Location> section, which for purposes of this note + treats the final path component as if it ended in a slash.

+

For more control over the matching, see <ProxyMatch>.

+
+

See also