Created
July 5, 2017 13:06
-
-
Save shammelburg/88965ec82dda0474c9ad67db1de27cfa to your computer and use it in GitHub Desktop.
Windows Auth for .Net Core
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<system.webServer> | |
<handlers> | |
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" /> | |
</handlers> | |
<aspNetCore processPath="dotnet" arguments=".\WebApiCore3.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="true"/> | |
</system.webServer> | |
</configuration> | |
<!--ProjectGuid: f6a83dd6-0abf-4ebf-bc7e-b4e620ca6fa9--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
forwardWindowsAuthToken="true" has to be added.