forked from hmcts/document-management-store-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.config
More file actions
19 lines (19 loc) · 825 Bytes
/
web.config
File metadata and controls
19 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform stdoutLogEnabled="true"
stdoutLogFile="%HOME%\LogFiles\stdout"
processPath="%JAVA_HOME%\bin\java.exe"
arguments="-javaagent:"%HOME%\site\wwwroot\applicationinsights-agent-2.5.1.jar" -Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\dm-store.jar"">
</httpPlatform>
<security>
<requestFiltering>
<!-- file upload limit 100MB -->
<requestLimits maxAllowedContentLength="104857600" />
</requestFiltering>
</security>
</system.webServer>
</configuration>