OldSquirrelForWindows icon indicating copy to clipboard operation
OldSquirrelForWindows copied to clipboard

RELEASES file hosted in IIS

Open matteomigliore opened this issue 11 years ago • 1 comments

I suggest to add an extension to the RELEASES file, I'm trying to add it in a IIS website, but I don't know how to insert the MIME type.

[Update] To publish the files using IIS, place a web.config with this configuration:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <directoryBrowse enabled="false" />
        <staticContent>
            <mimeMap fileExtension=".nupkg" mimeType="application/zip" />
            <mimeMap fileExtension="." mimeType="plain/text" />
        </staticContent>
    </system.webServer>
</configuration>

matteomigliore avatar Oct 17 '13 20:10 matteomigliore

This web.config should ideally be included automatically in Releases folder.

patrickjohncollins avatar May 30 '14 08:05 patrickjohncollins