-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
25 lines (25 loc) · 842 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".less" mimeType="text/css" />
</staticContent>
<handlers>
<add name="JSON" path="*.json" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\System32\inetsrv\asp.dll" resourceType="File" preCondition="bitness64" />
</handlers>
<defaultDocument>
<files>
<clear />
<add value="index.php" />
</files>
</defaultDocument>
<security>
<requestFiltering>
<hiddenSegments>
<add segment=".git" />
<add segment="configs" />
</hiddenSegments>
</requestFiltering>
</security>
</system.webServer>
</configuration>