Skip to content

Instantly share code, notes, and snippets.

@contactsamie
Forked from alexsorokoletov/Web.config
Created October 25, 2018 03:20
Show Gist options
  • Select an option

  • Save contactsamie/e8889b61d301fc4252c63c17262ce514 to your computer and use it in GitHub Desktop.

Select an option

Save contactsamie/e8889b61d301fc4252c63c17262ce514 to your computer and use it in GitHub Desktop.
Web.config for Azure App Services/Web Sites to allow downloading static files (withouth extension) for Electron autoupdate
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension="." mimeType="text/plain" />
<mimeMap fileExtension=".nupkg" mimeType="application/octet-stream" />
<mimeMap fileExtension=".exe" mimeType="application/octet-stream" />
<mimeMap fileExtension=".zip" mimeType="application/x-zip-compressed" />
</staticContent>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment