Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
wsfed-sp-hosted.php 308 B
<?php
/* 
 * WS-Federation Meta data for simpleSAMLphp
 *
 * The WS-Federation SP Hosted config is used by the WS-Federation SP to identify itself.
 *
 * Required fields:
 *  - host
 */

$metadata = array( 
	/*
	 * Example of a hosted SP 
	 */
	'__DYNAMIC:1__' => array(
		'host'  => '__DEFAULT__'
	)
);

?>