diff --git a/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/metadata/one-relyingparties.php b/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/metadata/one-relyingparties.php index 46894211..9cf7f315 100644 --- a/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/metadata/one-relyingparties.php +++ b/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/metadata/one-relyingparties.php @@ -4,8 +4,8 @@ // 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, diff --git a/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/nginx/nginx.conf b/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/nginx/nginx.conf index c0bc5df5..61acb5ab 100644 --- a/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/nginx/nginx.conf +++ b/servlet/spring-boot/java/saml2/identity-provider/src/main/resources/docker/nginx/nginx.conf @@ -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; } }