You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
764 B
24 lines
764 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
|
|
<!-- To customize the asp.net core module uncomment and edit the following section.
|
|
For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->
|
|
<!--
|
|
<system.webServer>
|
|
<handlers>
|
|
<remove name="aspNetCore"/>
|
|
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
|
|
</handlers>
|
|
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
|
|
</system.webServer>
|
|
-->
|
|
|
|
<system.webServer>
|
|
<security>
|
|
<requestFiltering>
|
|
<requestLimits maxQueryString="32768"/>
|
|
</requestFiltering>
|
|
</security>
|
|
</system.webServer>
|
|
|
|
</configuration>
|