mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
- allow static content within datamodels/ and extensions/ (reason: the setup make use of images within this directory) - simplified .htaccess and web.content generation during the compilation - it now also allow fonts
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<system.web>
|
|
<security>
|
|
<requestFiltering>
|
|
<fileExtensions applyToWebDAV="false" allowUnlisted="false" >
|
|
<add fileExtension=".css" allowed="true" />
|
|
<add fileExtension=".scss" allowed="true" />
|
|
<add fileExtension=".js" allowed="true" />
|
|
<add fileExtension=".png" allowed="true" />
|
|
<add fileExtension=".bmp" allowed="true" />
|
|
<add fileExtension=".gif" allowed="true" />
|
|
<add fileExtension=".jpeg" allowed="true" />
|
|
<add fileExtension=".jpg" allowed="true" />
|
|
<add fileExtension=".svg" allowed="true" />
|
|
<add fileExtension=".tiff" allowed="true" />
|
|
|
|
<add fileExtension=".woff" allowed="true" />
|
|
<add fileExtension=".woff2" allowed="true" />
|
|
<add fileExtension=".ttf" allowed="true" />
|
|
<add fileExtension=".eot" allowed="true" />
|
|
</fileExtensions>
|
|
</requestFiltering>
|
|
</security>
|
|
</system.web>
|
|
</configuration> |