Fix Identity Provider Configurations
This commit is contained in:
@@ -4,8 +4,8 @@ $port = getenv("PORT");
|
||||
// Spring Security SP
|
||||
|
||||
$metadata["http://localhost:$port/saml2/metadata"] = array(
|
||||
'AssertionConsumerService' => "https://localhost:$port/login/saml2/sso",
|
||||
'SingleLogoutService' => "https://localhost:$port/logout/saml2/slo",
|
||||
'AssertionConsumerService' => "http://localhost:$port/login/saml2/sso",
|
||||
'SingleLogoutService' => "http://localhost:$port/logout/saml2/slo",
|
||||
'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress',
|
||||
'simplesaml.nameidattribute' => 'emailAddress',
|
||||
'assertion.encryption' => FALSE,
|
||||
|
||||
@@ -19,7 +19,7 @@ http {
|
||||
server_name idp-one.7f000001.nip.io;
|
||||
|
||||
location / {
|
||||
proxy_pass http://idp-two.7f000001.nip.io:8080;
|
||||
proxy_pass http://idp-one.7f000001.nip.io:8080;
|
||||
proxy_set_header Host idp-one.7f000001.nip.io;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user