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

Documented the dynamic entity id functionality and the default host name func.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@524 44740490-163a-0410-bde0-09ae8108e29a
parent 2f354eb5
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>Tue Apr 22 10:22:44 2008</pubdate> <pubdate>Mon Apr 28 11:48:30 2008</pubdate>
<author> <author>
<firstname>Andreas Åkre</firstname> <firstname>Andreas Åkre</firstname>
...@@ -273,6 +273,17 @@ openssl x509 -req -days 60 -in server2.csr -signkey server2.key -out server2.crt ...@@ -273,6 +273,17 @@ openssl x509 -req -days 60 -in server2.csr -signkey server2.key -out server2.crt
<glossdef> <glossdef>
<para>The entity ID of the IdP. In this example: <para>The entity ID of the IdP. In this example:
<literal>idp.example.org</literal>.</para> <literal>idp.example.org</literal>.</para>
<para>simpleSAMLphp supports dynamic entityIDs that matches a
URL where simpleSAMLphp automatically generates metadata for the
hosted entity. To enable this functionality, set the index to be
<literal>__DYNAMIC:1__</literal>. The index needs to be unique,
so when you have multiple entries, increase the integer after
the colon. When the index <literal>__DYNAMIC:1__</literal> is
used, the resulting generated entity becomes something
like:</para>
<literallayout>https://sp.example.org/simplesaml/saml2/idp/metadata.php</literallayout>
</glossdef> </glossdef>
</glossentry> </glossentry>
...@@ -280,7 +291,10 @@ openssl x509 -req -days 60 -in server2.csr -signkey server2.key -out server2.crt ...@@ -280,7 +291,10 @@ openssl x509 -req -days 60 -in server2.csr -signkey server2.key -out server2.crt
<glossterm>host</glossterm> <glossterm>host</glossterm>
<glossdef> <glossdef>
<para>Host name of the server running this IdP.</para> <para>Host name of the server running this IdP. One of your
metadata entries can have the value
<literal>__DEFAULT__</literal>. A default entry will be used
when no other entry matches the current hostname.</para>
</glossdef> </glossdef>
</glossentry> </glossentry>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<articleinfo> <articleinfo>
<date>2007-10-15</date> <date>2007-10-15</date>
<pubdate>Tue Apr 22 10:23:15 2008</pubdate> <pubdate>Mon Apr 28 11:48:32 2008</pubdate>
<author> <author>
<firstname>Andreas Åkre</firstname> <firstname>Andreas Åkre</firstname>
...@@ -149,6 +149,17 @@ ...@@ -149,6 +149,17 @@
<glossdef> <glossdef>
<para>The entity ID of the hosted SP entity.</para> <para>The entity ID of the hosted SP entity.</para>
<para>simpleSAMLphp supports dynamic entityIDs that matches a
URL where simpleSAMLphp automatically generates metadata for the
hosted entity. To enable this functionality, set the index to be
<literal>__DYNAMIC:1__</literal>. The index needs to be unique,
so when you have multiple entries, increase the integer after
the colon. When the index <literal>__DYNAMIC:1__</literal> is
used, the resulting generated entity becomes something
like:</para>
<literallayout>https://sp.example.org/simplesaml/saml2/sp/metadata.php</literallayout>
</glossdef> </glossdef>
</glossentry> </glossentry>
...@@ -156,9 +167,10 @@ ...@@ -156,9 +167,10 @@
<glossterm>host</glossterm> <glossterm>host</glossterm>
<glossdef> <glossdef>
<para>Host name of the web server running this SAML 2.0 SP. This <para>Host name of the server running this SP. One of your
option allows simpleSAMLphp to automatically discover which SP metadata entries can have the value
metadata to use, when it runs multiple virtual hosts.</para> <literal>__DEFAULT__</literal>. A default entry will be used
when no other entry matches the current hostname.</para>
</glossdef> </glossdef>
</glossentry> </glossentry>
</glosslist> </glosslist>
...@@ -588,6 +600,17 @@ ...@@ -588,6 +600,17 @@
<glossdef> <glossdef>
<para>The entity ID of the hosted SP entity.</para> <para>The entity ID of the hosted SP entity.</para>
<para>simpleSAMLphp supports dynamic entityIDs that matches a
URL where simpleSAMLphp automatically generates metadata for the
hosted entity. To enable this functionality, set the index to be
<literal>__DYNAMIC:1__</literal>. The index needs to be unique,
so when you have multiple entries, increase the integer after
the colon. When the index <literal>__DYNAMIC:1__</literal> is
used, the resulting generated entity becomes something
like:</para>
<literallayout>https://sp.example.org/simplesaml/shib13/sp/metadata.php</literallayout>
</glossdef> </glossdef>
</glossentry> </glossentry>
...@@ -595,9 +618,10 @@ ...@@ -595,9 +618,10 @@
<glossterm>host</glossterm> <glossterm>host</glossterm>
<glossdef> <glossdef>
<para>The hostname of the server running this Shibboleth 1.3 SP. <para>Host name of the server running this SP. One of your
This option allows simpleSAMLphp to automatically discover which metadata entries can have the value
SP metadata to use, when it runs multiple virtual hosts.</para> <literal>__DEFAULT__</literal>. A default entry will be used
when no other entry matches the current hostname.</para>
</glossdef> </glossdef>
</glossentry> </glossentry>
</glosslist> </glosslist>
......
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