Created
July 24, 2017 19:50
-
-
Save rheid/2a499fb09a2c72cc2aeac987c4d55d97 to your computer and use it in GitHub Desktop.
IIS Web Config for directoryBrowse and mimeMap Azure WebServer Download
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<system.webServer> | |
<staticContent> | |
<mimeMap fileExtension=".ipa" mimeType="application/octet-stream" /> | |
<mimeMap fileExtension=".zip" mimeType="application/octet-stream" /> | |
<mimeMap fileExtension=".json" mimeType="application/json" /> | |
</staticContent> | |
<directoryBrowse enabled="true" showFlags="Date,Time,Extension,Size" /> | |
</system.webServer> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment