-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
21 lines (21 loc) · 921 Bytes
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
<add name="Access-Control-Allow-Methods" value="*" />
<add name="Access-Control-Allow-Headers" value="*" />
<add name="Access-Control-Allow-Credentials" value="*" />
</customHeaders>
</httpProtocol>
<staticContent>
<mimeMap fileExtension=".md" mimeType="text/x-markdown" />
<mimeMap fileExtension=".m3u8" mimeType="application/x-mpegURL" />
</staticContent>
<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/404/index.html" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
</configuration>