2020年10月30日 星期五

[筆記]Azure Web App 組態設定,資料庫連線字串

  • 參考:
    •  https://dotblogs.com.tw/ken74114/2017/04/14/111741
  • 解法:
    • 連線字串: " 改"
      • 原本在Web.config中,雙引號會寫成"。
      • Azure設定中要改回雙引號。
    • 類型改:Custom

2020年10月27日 星期二

Azure WebApp 新增mp4格式

  • Set Azure Web App Mime Types
  • Set Mp4

<system.webServer>
  <staticContent>
    <remove fileExtension=".mp4" />
        <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
               <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
 </staticContent>
</system.webServer>