18 lines
790 B
XML
18 lines
790 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<location path="." inheritInChildApplications="false">
|
|
<system.webServer>
|
|
<httpProtocol>
|
|
<customHeaders>
|
|
<!--<add name="Access-Control-Allow-Origin" value="http://happiness.tours" />-->
|
|
<add name="Access-Control-Allow-Headers" value="Content-Type" />
|
|
<add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />
|
|
</customHeaders>
|
|
</httpProtocol>
|
|
<handlers>
|
|
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
|
|
</handlers>
|
|
<aspNetCore processPath="dotnet" arguments=".\WebAPI.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
|
|
</system.webServer>
|
|
</location>
|
|
</configuration> |