Coldfusion site can't be reached after changing fileExtensions allowUnlisted="false" in IIS 10.0
Hi,
I am having issues with connecting to my ColdFusion website after changing fileExtensions allowUnlisted="false" in IIS 10.0.
If I change allowUnlisted back to true, then the website works perfectly. Neither the IIS logs nor the ColdFusion logs show offer any assistance in debugging this problem. There is a proxy if that matters.
My web.config is shown below. (I have tried without the mimeMap settings and I have tried resetting the IIS connector)
Any assistance would be greatly appreciated! Thanks!
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="false" allowHighBitCharacters="false">
<fileExtensions allowUnlisted="false">
<add fileExtension=".cfm" allowed="true" />
<add fileExtension=".cfc" allowed="true" />
<add fileExtension=".json" allowed="true" />
<add fileExtension=".htm" allowed="true" />
<add fileExtension=".css" allowed="true" />
<add fileExtension=".html" allowed="true" />
</fileExtensions>
<verbs allowUnlisted="true" />
</requestFiltering>
</security>
<staticContent>
<mimeMap fileExtension=".cfm" mimeType="text/html" />
<mimeMap fileExtension=".cfc" mimeType="text/html" />
</staticContent>
</system.webServer>
</configuration>
