generated from hmcts/spring-boot-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
web.config
15 lines (15 loc) · 874 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<!-- This is a configuration file used by CNP environment. Remove it if you don't deploy to CNP. -->
<!-- Make sure the jar file in httpPlatform has the right name. -->
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%JAVA_HOME%\bin\java.exe"
stdoutLogEnabled="true"
stdoutLogFile="%HOME%\LogFiles\stdout"
arguments="-javaagent:"%HOME%\site\wwwroot\applicationinsights-agent-2.5.1-BETA.jar" -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\rd-caseworker-ref-api.jar"">
</httpPlatform>
</system.webServer>
</configuration>