Skip to content

Instantly share code, notes, and snippets.

@nesticle8bit
Created April 11, 2019 21:16
Show Gist options
  • Save nesticle8bit/4d02dfe653ea5aa0912fc2df79dedbde to your computer and use it in GitHub Desktop.
Save nesticle8bit/4d02dfe653ea5aa0912fc2df79dedbde to your computer and use it in GitHub Desktop.
OAuth WebConfig
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="aspnet:MaxJsonDeserializerMembers" value="150000" />
<!-- Gestión Mejoramiento: Config -->
<add key="Config.InactiveUser" value="40" />
<add key="Config.ProjectCompany" value="IPS Universitaria" />
<add key="Url.Actual_Privada" value="http://localhost:9000/" />
<add key="Url.Actual_Publica" value="http://localhost:9000/" />
<!-- OAuth Configuration -->
<add key="Provider.Name" value="IPS Universitaria" />
<add key="OAuth.ServerURL_Privada" value="http://192.168.91.5:7171/" />
<add key="OAuth.ServerURL_Publica" value="http://192.168.91.5:7171/" />
<add key="OAuth.WebApi_Privada" value="http://10.20.65.67:83/" />
<add key="OAuth.WebApi_Publica" value="http://10.20.65.67:83/" />
<add key="OAuth.Client" value="0b8d69ad931b44b6836b6b9aab969232" />
<add key="OAuth.Password" value="IPS Universitaria" />
<add key="OAuth.RedirectTo" value="Account/IPSUniversitariaLogin" />
<!-- Numero de Usuarios que deberia devolver el Api -->
<add key="OAuth.Take" value="80" />
</appSettings>
<appSettings>
<add key="Url.Actual_Privada" value="http://192.168.91.5:7070/" xdt:Locator="Match(key)" xdt:Transform="SetAttributes" />
<add key="Url.Actual_Publica" value="http://192.168.91.5:7070/" xdt:Locator="Match(key)" xdt:Transform="SetAttributes" />
<add key="OAuth.ServerURL_Privada" value="http://192.168.91.5:7171/" xdt:Locator="Match(key)" xdt:Transform="SetAttributes" />
<add key="OAuth.ServerURL_Publica" value="http://192.168.91.5:7171/" xdt:Locator="Match(key)" xdt:Transform="SetAttributes" />
</appSettings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment