SingleSignOn
No edit summary
No edit summary
Line 22: Line 22:
   </authorization>           
   </authorization>           
  </system.web>
  </system.web>
Tip: Consider to add the modified Web.config to _AssetsTK - this way it will be good even if replaced by turnkey re-deploy

Revision as of 14:21, 31 March 2017

When running Turnkey in Intraweb scenarios you will want to use SSO or single sign on for your authenticated users.

In IIS do this:

  • AppPool - Managed Pipeline set to Integrated mode.
  • Authentication - Disabled: Anonymous Authentication
  • Authentication - Disabled: ASP.NET Impersonation
  • Authentication - Enabled: Windows Authentication

In the MDriven Turnkey web config do this

<appSettings>      
   ...
   <add key="owin:AutomaticAppStartup" value="false"/>       <-- Add this to stop the turnkey standard OWin
</appSettings>  
<system.web>        

  <authentication mode="None" />      <--- remove this line

  <authentication mode="Windows" />         <-- Add this and the lines below
  <authorization>             
      <deny users="?"/>          
  </authorization>          
</system.web>

Tip: Consider to add the modified Web.config to _AssetsTK - this way it will be good even if replaced by turnkey re-deploy

This page was edited 95 days ago on 02/10/2024. What links here