Skip to content

Commit 3a5a990

Browse files
committed
add some hints for simplesamlphp-module-aa
1 parent b5e4377 commit 3a5a990

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,24 @@ Example:
7777

7878
),
7979

80+
You have to define PAOS acs endpoint with correct Location (take a look on VIRTUAL_HOST env variable), if the AA is a simpleSAMLphp implementation with simplesamlphp-module-aa
81+
82+
authsources.php in the current sp array, ie. `default-sp`
83+
```
84+
'AssertionConsumerService' => [
85+
[
86+
'index' => 0,
87+
'isDefault' => true,
88+
'Location' => 'https://' . getenv('VIRTUAL_HOST') . '/simplesaml/module.php/saml/sp/saml1-acs.php/default-sp',
89+
'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
90+
],
91+
[
92+
'index' => 1,
93+
'Location' => 'https://' . getenv('VIRTUAL_HOST') . '/simplesaml/module.php/saml/sp/saml1-acs.php/default-sp',
94+
'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:PAOS',
95+
],
96+
],
97+
```
8098

8199
Options
82100
-------

0 commit comments

Comments
 (0)