Azure not handling video files
description
This is a generic azure issue, for iis to be able to recognize video file types we have to add video file extensions, now that you put configureiis.cmd (1.6) it is possible to add these lines inside the cmd and azure will be able to run ok with videos.
%windir%\system32\inetsrv\appcmd.exe set config -section:staticContent /+"[fileExtension='.mp4',mimeType='video/mp4']"
%windir%\system32\inetsrv\appcmd.exe set config -section:staticContent /+"[fileExtension='.m4v',mimeType='video/mp4']"
%windir%\system32\inetsrv\appcmd.exe set config -section:staticContent /+"[fileExtension='.ogg',mimeType='video/ogg']"
%windir%\system32\inetsrv\appcmd.exe set config -section:staticContent /+"[fileExtension='.webm',mimeType='video/webm']"