Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/source/_templates/pplnx_template/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@
<!-- MOBILE TOP BAR OVERLOAD -->
{% block mobile_nav %}
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
{% if logo %}
<a href="{{ pathto(master_doc) }}">
<img src="{{ pathto('_static/logo.jpg', 1) }}" class="logo" alt="Logo"/>
</a>
<img src="{{ pathto('_static/' + logo, 1) }}" class="logo" alt="Logo"/>
</a>
{% endif %}
<a href="{{ pathto(master_doc) }}">
{{ project }}
</a>
Expand Down
8 changes: 4 additions & 4 deletions docs/source/contents/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,13 @@ see AARC Blueprint specs `here <https://zenodo.org/record/4596667/files/AARC-G06

IdP scoping
===========
The SP can suggest an IdP to a proxy by using the Scoping and IDPList elements in a SAML AuthnRequest. This is done using the `scoping` parameter to the login URL.
The SP can suggest an IdP to a proxy by using the Scoping and IDPList elements in a SAML AuthnRequest. This is done using the `scoping` parameter to the login URL. ::

``https://sp.example.org/saml2/login/?scoping=https://idp.example.org``
https://sp.example.org/saml2/login/?scoping=https://idp.example.org

This parameter can be combined with the IdP parameter if multiple IdPs are present in the metadata, otherwise the first is used.
This parameter can be combined with the IdP parameter if multiple IdPs are present in the metadata, otherwise the first is used. ::

``https://sp.example.org/saml2/login/?scoping=https://idp.example.org&idp=https://proxy.example.com/metadata``
https://sp.example.org/saml2/login/?scoping=https://idp.example.org&idp=https://proxy.example.com/metadata

Currently there is support for a single IDPEntry in the IDPList.

Expand Down