diff --git a/config-templates/authsources.php b/config-templates/authsources.php
index aed1c53518cf1c8d09f49e8c63d8ec7b87c128b6..716ba0039dc718adeb0d4b6e95addb476c13184d 100644
--- a/config-templates/authsources.php
+++ b/config-templates/authsources.php
@@ -15,16 +15,29 @@ $config = array(
 
 
 	/*
-	 * This is the default SAML SP, used in examples.
+	 * An authentication source which can authenticate against both SAML 2.0
+	 * and Shibboleth 1.3 IdPs.
 	 */
 	'default-sp' => array(
 		'saml:SP',
 
+		/*
+		 * The entity ID of this SP.
+		 * Can be NULL/unset, in which case an entity ID is generated based on the metadata URL.
+		 */
+		'entityID' => NULL,
+
 		/*
 		 * The entity ID of the IdP this should SP should contact.
 		 * Can be NULL/unset, in which case the user will be shown a list of available IdPs.
 		 */
 		'idp' => NULL,
+
+		/*
+		 * The URL to the discovery service.
+		 * Can be NULL/unset, in which case a builtin discovery service will be used.
+		 */
+		'discoURL' => NULL,
 	),
 
 
@@ -80,32 +93,7 @@ $config = array(
 		'authpapi:PAPI',
 	),
 
-	/*
-	 * An authentication source which can authenticate against both SAML 2.0
-	 * and Shibboleth 1.3 IdPs.
-	 */
-	'saml' => array(
-		'saml:SP',
-
-		/*
-		 * The entity ID of this SP.
-		 * Can be NULL/unset, in which case an entity ID is generated based on the metadata URL.
-		 */
-		'entityID' => NULL,
 
-		/*
-		 * The entity ID of the IdP this should SP should contact.
-		 * Can be NULL/unset, in which case the user will be shown a list of available IdPs.
-		 */
-		'idp' => NULL,
-
-		/*
-		 * The URL to the discovery service.
-		 * Can be NULL/unset, in which case a builtin discovery service will be used.
-		 */
-		'discoURL' => NULL,
-
-	),
 
 
 	'facebook' => array(