-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathweb.config
More file actions
19 lines (19 loc) · 868 Bytes
/
web.config
File metadata and controls
19 lines (19 loc) · 868 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>
<!-- ping -->
<system.webServer>
<handlers accessPolicy="Read, Execute, Script">
<remove name="OPTIONSVerbHandler" />
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
<remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
<remove name="StaticFile" />
<remove name="TRACEVerbHandler" />
<add name="WrapperShim" path="*" verb="*" modules="IsapiModule" scriptProcessor="C:\Gits\RawIsapi\x64\Debug\RawIsapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="bitness64" />
</handlers>
<httpProtocol>
<customHeaders>
<remove name="X-Powered-By" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>