Email Connector Callback URL - OnPremise Cloud Application

0
Hi,   We are facing an issue with Email Connector callback URL throwing an error after successful authentication in azure pool. Do we need to setup any configuration for Mendix Onpremise cloud environment? We deployed our application using Mendix Service Console, Mendix Studio Pro version 8.18.22 Appreciate your help!    
asked
1 answers
2

Put this rule to the web.config where the on-premise application was installed.

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

answered