Skip to content
Snippets Groups Projects
Commit eab8b39f authored by Enrique de la Hoz's avatar Enrique de la Hoz
Browse files

Added sts-crt option to config-login-infocard.php

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1052 44740490-163a-0410-bde0-09ae8108e29a
parent 21c3bec4
No related branches found
No related tags found
No related merge requests found
...@@ -72,6 +72,8 @@ $config = array ( ...@@ -72,6 +72,8 @@ $config = array (
'server_key' => '/etc/apache2/ssl/idp.key', 'server_key' => '/etc/apache2/ssl/idp.key',
'server_crt' => '/etc/apache2/ssl/idp.crt', 'server_crt' => '/etc/apache2/ssl/idp.crt',
'sts_crt' => '/etc/apache2/ssl/sts.crt',
'IClogo' => 'resources/infocard_114x80.png', 'IClogo' => 'resources/infocard_114x80.png',
...@@ -92,6 +94,22 @@ $config = array ( ...@@ -92,6 +94,22 @@ $config = array (
'webpage' => array('displayTag'=>"webpage", 'description'=>"Página web") 'webpage' => array('displayTag'=>"webpage", 'description'=>"Página web")
), ),
), ),
//STS only
// array of certificates forming a trust chain. The local signing
// certificate is [0], the one that signed that is [1], etc, chaining to a
// trust anchor.
'CardGenerator' => 'https://idp.aut.uah.es/simplesaml/module.php/InfoCard/getinfocard.php',
'certificates' => array(
0 => '/etc/apache2/ssl/sts.crt',
1 => '/etc/apache2/ssl/CA.crt'
),
'sts_key' => '/etc/apache2/ssl/sts.key',
'tokenserviceurl' => 'https://sts/tokenservice.php',
'mexurl' => 'https://sts/mex.php',
); );
?> ?>
\ No newline at end of file
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