on
26-Jan-2023
05:30
- edited on
27-Jan-2023
10:49
by
Rebecca_Moloney
In this article we are going to discuss a use case, where we have multiple stores URIs hosted at the same Citrix StoreFront.
Following Citrix deployment guide , we end up with the below policy configurations,
The created Form Based Single Sign-On look like the below,
Note,
Make sure to validate the strart URI and form action if any customization done at store front side.
In order to adjust the configurations to match our multi-store setup, we will follow the below,
StoreB
StoreC
when ACCESS_ACL_ALLOWED {
switch -glob -- [string tolower [HTTP::uri]] {
/citrix/storea/explicitauth/login* {
WEBSSO::select Citrix_storea_sso_form_based
}
/citrix/storeb/explicitauth/login* {
WEBSSO::select Citrix_storeb_sso_form_based
}
/citrix/storec/explicitauth/login* {
WEBSSO::select Citrix_storec_sso_form_based
}
}
}