Created
November 17, 2013 09:00
-
-
Save sjwaight/7511041 to your computer and use it in GitHub Desktop.
Sample connection strings configuration file from the Thinktecture IdentityServser setup for the associated blog.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<connectionStrings> | |
<!-- configuration data like endpoints, protocol config, relying parties etc... --> | |
<add name="IdentityServerConfiguration" | |
connectionString="server=.;initial catalog=IdentityServerConfiguration;Integrated Security=SSPI" | |
providerName="System.Data.SqlClient" /> | |
<!-- user database --> | |
<add name="ProviderDB" | |
connectionString="server=.;initial catalog=AuthDemoApp;Integrated Security=SSPI" | |
providerName="System.Data.SqlClient" /> | |
</connectionStrings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment