mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
LF is the git default and all new files are stored as such. Old files from the hg to git conversion however were moved over as CRLF.
17 lines
620 B
XML
17 lines
620 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<staticContent>
|
|
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
|
|
</staticContent>
|
|
|
|
<handlers accessPolicy="Script,Read">
|
|
<!--
|
|
iis7 - for any request to a file exists on disk, return it via native http module.
|
|
accessPolicy 'Script' is to allow for a managed 404 page.
|
|
-->
|
|
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule" preCondition="integratedMode" resourceType="File" requireAccess="Read" />
|
|
</handlers>
|
|
</system.webServer>
|
|
</configuration>
|