Skip to content
Snippets Groups Projects
Commit d409536e authored by Olav Morken's avatar Olav Morken
Browse files

Remove references to depreceated SPs in www/

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1800 44740490-163a-0410-bde0-09ae8108e29a
parent 91b131f7
No related branches found
No related tags found
No related merge requests found
......@@ -139,9 +139,7 @@ $config = array (
* one of the functionalities below, but in some cases you could run multiple functionalities.
* In example when you are setting up a federation bridge.
*/
'enable.saml20-sp' => true,
'enable.saml20-idp' => false,
'enable.shib13-sp' => false,
'enable.shib13-idp' => false,
'enable.wsfed-sp' => false,
'enable.authmemcookie' => false,
......
......@@ -35,9 +35,7 @@ In this example we will setup this server as an IdP for Google Apps for Educatio
Edit `config.php`, and enable the SAML 2.0 IdP:
'enable.saml20-sp' => false,
'enable.saml20-idp' => true,
'enable.shib13-sp' => false,
'enable.shib13-idp' => false,
## Setting up a SSL signing certificate
......
......@@ -17,9 +17,7 @@ Enabling the Identity Provider functionality
The first that must be done is to enable the identity provider functionality. This is done by editing `config/config.php`. The options `enable.saml20-idp` and `enable.shib13-idp` controls whether SAML 2.0 and Shibboleth 1.3 support is enabled. Enable one or both of those by assigning `true` to them:
'enable.saml20-sp' => false,
'enable.saml20-idp' => true,
'enable.shib13-sp' => false,
'enable.shib13-idp' => true,
......
<?php
/*
* SAML 2.0 Meta data for simpleSAMLphp
*
* The SAML 2.0 SP Hosted config is used by the SAML 2.0 SP to identify itself.
*
* Required fields:
* - host
*
* Optional fields:
* - NameIDFormat
* - ForceAuthn
* - redirect.sign
*/
$metadata = array(
/*
* Example of a hosted SP
*/
'__DYNAMIC:1__' => array(
'host' => '__DEFAULT__'
)
);
?>
\ No newline at end of file
......@@ -68,9 +68,7 @@ SimpleSAML_Module::callHooks('frontpage', $allLinks);
$enablematrix = array(
'saml20-sp' => $config->getBoolean('enable.saml20-sp', TRUE),
'saml20-idp' => $config->getBoolean('enable.saml20-idp', false),
'shib13-sp' => $config->getBoolean('enable.shib13-sp', false),
'shib13-idp' => $config->getBoolean('enable.shib13-idp', false),
);
......
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