1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-13 00:58:13 -05:00
bitwarden/src/Api/web.config
2018-05-31 14:31:00 -04:00

14 lines
632 B
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00" />
<security>
<requestFiltering>
<requestLimits maxQueryString="5120" maxAllowedContentLength="105906176" />
</requestFiltering>
</security>
</system.webServer>
</configuration>