Skip to content
Snippets Groups Projects
Commit 3a786a46 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Adding documentatino for the new tlsclient authentication module

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@501 44740490-163a-0410-bde0-09ae8108e29a
parent 5f8d5254
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<articleinfo> <articleinfo>
<date>2007-10-15</date> <date>2007-10-15</date>
<pubdate>Thu Mar 27 20:46:34 2008</pubdate> <pubdate>Wed Apr 16 10:24:40 2008</pubdate>
<author> <author>
<firstname>Andreas Åkre</firstname> <firstname>Andreas Åkre</firstname>
...@@ -120,6 +120,15 @@ ...@@ -120,6 +120,15 @@
LDAP.</para> LDAP.</para>
</glossdef> </glossdef>
</glossentry> </glossentry>
<glossentry>
<glossterm>auth/login-tlsclient.php</glossterm>
<glossdef>
<para>Authentication via client certificates. (using the apache
SSL module)</para>
</glossdef>
</glossentry>
</glosslist></para> </glosslist></para>
<section> <section>
...@@ -158,6 +167,28 @@ ...@@ -158,6 +167,28 @@
</itemizedlist> </itemizedlist>
</section> </section>
<section>
<title>Configure the tlsclient authenticaiton module</title>
<para>Configure apache like this:</para>
<programlisting> SSLEngine On
SSLCertificateFile /etc/ssl/private/bridge.pem
SSLCertificateKeyFile /etc/ssl/private/bridge.key
SSLCertificateChainFile /etc/ssl/certs/sureserverEDU.pem
SSLOptions +StdEnvVars +ExportCertData
KeepAliveTimeout 60
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCACertificateFile "/etc/ssl/private/tlsclienttest-ca.crt"
SSLVerifyClient optional
SSLVerifyDepth 1</programlisting>
<para>And, then configure the identity provider to use the
authentication module:
<filename>auth/login-tlsclient.php</filename>.</para>
</section>
<section> <section>
<title>Configuring the multi-LDAP authenticaiton module</title> <title>Configuring the multi-LDAP authenticaiton module</title>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment