forked from hmcts/idam-web-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
18 lines (18 loc) · 810 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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\idam-web-public.war"">
</httpPlatform>
<httpProtocol>
<customHeaders>
<remove name="X-Powered-By" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>