Files
Facilitor/web.config.sample
Jos Groot Lipman e344ec1f38 Voorbeeld bestanden kunnen beter .sample suffix hebben in plaats van '_' prefix.
Anders is _default.asp gewoon op te roepen. Haalt op zich weinig uit maar is wel slordig

svn path=/Website/trunk/; revision=37695
2018-04-18 12:32:11 +00:00

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>