You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cannot add duplicate collection entry of type ‘mimeMap’ with unique key attribute ‘fileExtension’ set to ‘.’
I needed to add the following line to the generated web.config
<remove fileExtension="." />
Perhaps its worth adding this by default?
<configuration>
<system.webServer>
<staticContent>
<!--
ACME server requires that the verification file is served either without
Content-Type header or with "text/json". This setting ensures that.
-->
<remove fileExtension="." />
<mimeMap fileExtension="." mimeType="text/json" />
</staticContent>
</system.webServer>
</configuration>
Great work by the way and thanks for the clear step by step instructions!
The text was updated successfully, but these errors were encountered:
To resolve the following IIS error;
I needed to add the following line to the generated web.config
<remove fileExtension="."
/>Perhaps its worth adding this by default?
Great work by the way and thanks for the clear step by step instructions!
The text was updated successfully, but these errors were encountered: