-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb.config
26 lines (26 loc) · 1.07 KB
/
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
26
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<location path="" overrideMode="Inherit">
<system.webServer>
<urlCompression doDynamicCompression="false" />
<handlers>
<add name="PHP-FastCGI7.2" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\php7.2\php-cgi_2.exe" resourceType="File" />
</handlers>
<defaultDocument enabled="true">
<files>
<add value="index.htm" />
<add value="index.html" />
<add value="index.php" />
<add value="index.asp" />
<add value="default.asp" />
<add value="index.aspx" />
<add value="default.aspx" />
</files>
</defaultDocument>
<staticContent>
<mimeMap fileExtension=".webp" mimeType="image/webp" />
<clientCache />
</staticContent>
</system.webServer>
</location>
</configuration>