Cette traduction peut être périmée. Vérifiez la version
+ anglaise pour les changements récents.
Description: | Permet d'utiliser un annuaire LDAP pour l'authentification
HTTP de base. |
Statut: | Extension |
diff --git a/docs/manual/sections.html.en b/docs/manual/sections.html.en
index fe4730abf7..cdaa6f3393 100644
--- a/docs/manual/sections.html.en
+++ b/docs/manual/sections.html.en
@@ -97,9 +97,9 @@ module is designed for the use in test suites and large networks which have to
deal with different httpd versions and different configurations.
-<IfVersion >= 2.1>
+<IfVersion >= 2.4>
# this happens only in versions greater or
- # equal 2.1.0.
+ # equal 2.4.0.
</IfVersion>
@@ -160,8 +160,7 @@ of where it is found.
<Files private.html>
- Order allow,deny
- Deny from all
+ Require all denied
</Files>
@@ -179,8 +178,7 @@ directory.
<Directory /var/web/dir1>
<Files private.html>
- Order allow,deny
- Deny from all
+ Require all denied
</Files>
</Directory>
@@ -202,8 +200,7 @@ as any other requests starting with the /private
string.
<LocationMatch ^/private>
- Order Allow,Deny
- Deny from all
+ Require all denied
</Location>
@@ -284,8 +281,7 @@ all user directories could look as follows:
at once:
<FilesMatch \.(?i:gif|jpe?g|png)$>
- Order allow,deny
- Deny from all
+ Require all denied
</FilesMatch>
@@ -323,8 +319,7 @@ For example, consider the following configuration:
<Location /dir/>
- Order allow,deny
- Deny from all
+ Require all denied
</Location>
@@ -389,8 +384,7 @@ will prevent the proxy server from being used to access the
<Proxy http://www.example.com/*>
- Order allow,deny
- Deny from all
+ Require all granted
</Proxy>
@@ -534,15 +528,15 @@ other words, order of merging is important, so be careful!
<Location />
- Order deny,allow
- Allow from all
+ Require all granted
</Location>
# Woops! This <Directory> section will have no effect
<Directory />
- Order allow,deny
- Allow from all
- Deny from badguy.example.com
+ <RequireAll>
+ Require all granted
+ Require not host badguy.example.com
+ </RequireAll>
</Directory>
diff --git a/docs/manual/sections.xml.fr b/docs/manual/sections.xml.fr
index 3afc1da471..e976a553ea 100644
--- a/docs/manual/sections.xml.fr
+++ b/docs/manual/sections.xml.fr
@@ -3,7 +3,7 @@
-
+
+
+
+