22 lines
923 B
XML
22 lines
923 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<!-- enable when IIS Rewrite installed
|
|
<rewrite>
|
|
<rules configSource="appl\fac\fac_rewrite.config" />
|
|
</rewrite>
|
|
-->
|
|
<httpErrors existingResponse="PassThrough">
|
|
<remove statusCode="500" subStatusCode="100" />
|
|
<error statusCode="500" subStatusCode="100" path="/appl/shared/500_error.asp" responseMode="ExecuteURL" />
|
|
</httpErrors>
|
|
<staticContent>
|
|
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
|
|
<remove fileExtension=".woff" />
|
|
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
|
|
<remove fileExtension=".woff2" />
|
|
<mimeMap fileExtension=".woff2" mimeType="font/x-woff" />
|
|
</staticContent>
|
|
</system.webServer>
|
|
</configuration>
|