From: Lucien Gentis
Date: Sat, 18 Jun 2011 13:53:59 +0000 (+0000)
Subject: Update.
X-Git-Tag: 2.3.13~42
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04e72b940bae456d395fbc23ec42b8400ddab8d9;p=thirdparty%2Fapache%2Fhttpd.git
Update.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1137185 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/ssl/ssl_howto.xml.fr b/docs/manual/ssl/ssl_howto.xml.fr
index b82655d3761..d8bd23e71a9 100644
--- a/docs/manual/ssl/ssl_howto.xml.fr
+++ b/docs/manual/ssl/ssl_howto.xml.fr
@@ -1,7 +1,7 @@
-
+
@@ -75,7 +75,7 @@ que le chiffrement fort ?
chiffrements de plus haut niveau :
httpd.conf
SSLProtocol all -SSLv2
- SSLCipherSuite HIGH:!ADH:!EXP:!MD5:!NULL
+ SSLCipherSuite HIGH:!aNULL:!EXP:!MD5:!NULL
@@ -84,7 +84,7 @@ que le chiffrement fort ?
httpd.conf
SSLProtocol all -SSLv2
- SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!ADH:!EXP:!MD5:!NULL
+ SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!aNULL:!EXP:!MD5:!NULL
SSLHonorCipherOrder on
@@ -107,12 +107,12 @@ accéder à une URL particulière ?
Cette configuration peut se présenter comme suit :
# soyons très tolérant a priori
- SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
+ SSLCipherSuite ALL:!aNULL:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
<Location /strong/area>
# sauf pour https://hostname/strong/area/ et ses sous-répertoires
# qui exigent des chiffrements forts
- SSLCipherSuite HIGH:!ADH:!EXP:!MD5:!NULL
+ SSLCipherSuite HIGH:!aNULL:!EXP:!MD5:!NULL
</Location>