From: Jim Jagielski mod_authn_dbm
module provides the AuthDBMUserFile
directive. These
- files can be created and manipulated with the dbmmanage
program. Many
+ files can be created and manipulated with the dbmmanage
and htdbm
programs. Many
other types of authentication options are available from third
party modules in the Apache Modules
Database.
dbm
or dbd
as your storage
format.
- To select a dbd file rather than a text file, for example:
+To select a dbm file rather than a text file, for example:
<Directory /www/docs/private>
-
AuthName "Private"
AuthType Basic
AuthBasicProvider dbm
AuthDBMUserFile /www/passwords/passwd.dbm
Require valid-user
-
</Directory>
@@ -402,14 +400,12 @@ Require group GroupName
<Directory /www/docs/private>
-
AuthName "Private"
AuthType Basic
AuthBasicProvider file ldap
AuthUserFile /usr/local/apache/passwd/passwords
AuthLDAPURL ldap://ldaphost/o=yourorg
Require valid-user
-
</Directory>
@@ -429,7 +425,6 @@ Require group GroupName
<Directory /www/docs/private>
-
AuthName "Private"
AuthType Basic
AuthBasicProvider file
@@ -438,7 +433,6 @@ Require group GroupName
AuthGroupFile /usr/local/apache/passwd/groups
Require group GroupName
Require ldap-group cn=mygroup,o=yourorg
-
</Directory>
diff --git a/docs/manual/howto/auth.html.fr b/docs/manual/howto/auth.html.fr
index b5d436d9cf..713a85835e 100644
--- a/docs/manual/howto/auth.html.fr
+++ b/docs/manual/howto/auth.html.fr
@@ -27,6 +27,8 @@
ko |
tr
+L'authentification est un processus qui vous permet de vérifier qu'une personne est bien celle qu'elle prétend être. L'autorisation @@ -393,13 +395,11 @@ passe
<Directory /www/docs/private>
-
AuthName "Private"
AuthType Basic
AuthBasicProvider dbm
AuthDBMUserFile /www/passwords/passwd.dbm
Require valid-user
-
</Directory>
@@ -422,14 +422,12 @@ d'authentification
<Directory /www/docs/private>
-
AuthName "Private"
AuthType Basic
AuthBasicProvider file ldap
AuthUserFile /usr/local/apache/passwd/passwords
AuthLDAPURL ldap://ldaphost/o=yourorg
Require valid-user
-
</Directory>
@@ -452,7 +450,6 @@ d'authentification
<Directory /www/docs/private>
-
AuthName "Private"
AuthType Basic
AuthBasicProvider file
@@ -461,7 +458,6 @@ d'authentification
AuthGroupFile /usr/local/apache/passwd/groups
Require group GroupName
Require ldap-group cn=mygroup,o=yourorg
-
</Directory>
diff --git a/docs/manual/howto/auth.xml.fr b/docs/manual/howto/auth.xml.fr
index 00e8eb99ed..1b573255d9 100644
--- a/docs/manual/howto/auth.xml.fr
+++ b/docs/manual/howto/auth.xml.fr
@@ -1,7 +1,7 @@
-
+
diff --git a/docs/manual/howto/auth.xml.ja b/docs/manual/howto/auth.xml.ja
index eb3b0abb52..d1d2790107 100644
--- a/docs/manual/howto/auth.xml.ja
+++ b/docs/manual/howto/auth.xml.ja
@@ -1,7 +1,7 @@
-
+
+
+
+
diff --git a/docs/manual/mod/mod_headers.xml.ja b/docs/manual/mod/mod_headers.xml.ja
index 3b71ebd2b4..5447cfc264 100644
--- a/docs/manual/mod/mod_headers.xml.ja
+++ b/docs/manual/mod/mod_headers.xml.ja
@@ -1,7 +1,7 @@
-
+
+
+
diff --git a/docs/manual/mod/mod_rewrite.xml.meta b/docs/manual/mod/mod_rewrite.xml.meta
index decc0a7b1e..0be21e86f4 100644
--- a/docs/manual/mod/mod_rewrite.xml.meta
+++ b/docs/manual/mod/mod_rewrite.xml.meta
@@ -8,6 +8,6 @@
SSL_SERVER_A_SIG
SSL_SERVER_A_KEY
SSL_SERVER_CERT
SSL_SRP_USER
SSL_SRP_USERINFO
x509 specifies a component of an X.509 DN; one of @@ -655,6 +659,7 @@ openssl version. Newer openssl versions may include additional ciphers.
kDHr
kDHd
kEDH
kSRP
aNULL
aRSA
ECDH
ADH
AECDH
SRP
DSS
ECDSA
aNULL
SSLCertificateKeyFile
.
+
+
+Description: | SRP unknown user seed |
---|---|
Syntax: | SSLSRPUnknownUserSeed secret-string |
Context: | server config, virtual host |
Status: | Extension |
Module: | mod_ssl |
Compatibility: | Available in httpd 2.4.4 and later, if using OpenSSL 1.0.1 or +later |
+This directive sets the seed used to fake SRP user parameters for unknown +users, to avoid leaking whether a given user exists. Specify a secret +string. If this directive is not used, then Apache will return the +UNKNOWN_PSK_IDENTITY alert to clients who specify an unknown username. +
+
+SSLSRPUnknownUserSeed "secret"
+
Description: | Path to SRP verifier file |
---|---|
Syntax: | SSLSRPVerifierFile file-path |
Context: | server config, virtual host |
Status: | Extension |
Module: | mod_ssl |
Compatibility: | Available in httpd 2.4.4 and later, if using OpenSSL 1.0.1 or +later |
+This directive enables TLS-SRP and sets the path to the OpenSSL SRP (Secure +Remote Password) verifier file containing TLS-SRP usernames, verifiers, salts, +and group parameters.
+
+SSLSRPVerifierFile "/path/to/file.srpv"
+
+The verifier file can be created with the openssl
command line
+utility:
+openssl srp -srpvfile passwd.srpv -userinfo "some info" -add username
+
The value given with the optional -userinfo
parameter is
+avalable in the SSL_SRP_USERINFO
request environment variable.
mod_ext_filter
optionsmod_ext_filter
optionsmod_ext_filter
optionsmod_ext_filter
optionsTLS-SRP (Secure Remote Password key exchange for TLS, specified in RFC 5054)
+ can supplement or replace certificates in authenticating an SSL connection.
+ To use TLS-SRP, set the
+ SSLSRPVerifierFile
directive to
+ point to an OpenSSL SRP verifier file. To create the verifier file, use the
+ openssl
tool:
+ openssl srp -srpvfile passwd.srpv -add username
+
After creating this file, specify it in the SSL server configuration:
+
+ SSLSRPVerifierFile /path/to/passwd.srpv
+
To force clients to use non-certificate TLS-SRP cipher suites, use the + following directive:
+
+ SSLCipherSuite "!DSS:!aRSA:SRP"
+
Le sage n'apporte pas de bonnes réponses, il pose les bonnes questions
diff --git a/docs/manual/ssl/ssl_faq.xml.fr b/docs/manual/ssl/ssl_faq.xml.fr index 6075a741e7..9df7e96d14 100644 --- a/docs/manual/ssl/ssl_faq.xml.fr +++ b/docs/manual/ssl/ssl_faq.xml.fr @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/ssl/ssl_faq.xml.meta b/docs/manual/ssl/ssl_faq.xml.meta index 61db826966..a5d5a97804 100644 --- a/docs/manual/ssl/ssl_faq.xml.meta +++ b/docs/manual/ssl/ssl_faq.xml.meta @@ -8,6 +8,6 @@en -fr +fr