OnPremise SSO Issue

0
Hi Community,   I am currently facing an issue implementing MyID SSO Authentication for my OnPremise Mendix App.   The SSO works fine for http://localhost:8081/SSO/ However for my URL exposed via IIS https://mymendixapp.com/SSO/ it does’nt work. It throws 404 not found error.   Any Idea  why SSO works for localhost but not for the website exposed via IIS?
asked
1 answers
1

Ravi,

 

Did you forget to add a rule for SSO in web.config? Check it out Configuring the URL Rewrite

It should look like this

 

<rule name="sso">
    <match url="^(sso/)(.*)" />
    <action type="Rewrite" url="http://localhost:8080/{R:1}{R:2}" />
</rule>

answered