Skip to content

Commit

Permalink
Merge pull request #130 from humanmade/sso-multisite-note
Browse files Browse the repository at this point in the history
Add note on default multisite behaviour
  • Loading branch information
mikelittle authored Sep 14, 2023
2 parents 907f255 + bdbc0cb commit 06d1e7d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/saml-2-0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ In your IdP you can provide the following endpoint URLs to configure SSO, where
- Single Logout Service (SLS): `https://<site-url>/sso/sls`
- Assertion Consumer Service (ACS): `https://<site-url>/sso/verify`

**Note:**: `<site-url>` will default to your primary network URL rather than the current site's URL. For per site mode use the following filter:

```php
add_filter( 'wpsimplesaml_network_activated', '__return_false', 100 );
```

## Identity Provider Metadata XML

To enable SAML 2.0 support, add the IdP metadata XML files to your project's `.config/sso/` directory (you may need to create the directory first).
Expand Down

0 comments on commit 06d1e7d

Please sign in to comment.