Skip to content

Instantly share code, notes, and snippets.

@shammelburg
Created July 5, 2017 13:06
Show Gist options
  • Save shammelburg/88965ec82dda0474c9ad67db1de27cfa to your computer and use it in GitHub Desktop.
Save shammelburg/88965ec82dda0474c9ad67db1de27cfa to your computer and use it in GitHub Desktop.
Windows Auth for .Net Core
<?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-->
@shammelburg
Copy link
Author

forwardWindowsAuthToken="true" has to be added.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment