azure website移行作業つまった処メモ
azure website
外部サービスのリポジトリと連携できるのがいいですね
個人的に移管でつまったところをメモします
1. SVGが見れない (woff,tffも)
ルートディレクトリに web.config を作成
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
<remove fileExtension=".ttf" />
<mimeMap fileExtension=".ttf" mimeType="application/octet-stream" />
<remove fileExtension=".svg" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
</staticContent>
</system.webServer>
</configuration>
フォントファイルのwoff,ttfも初期設定では反映されないようですので追加しとく
2.ドメインのはりかえ
ドメイン管理のほうでCNAMEとAレコードでazureとドメインを紐付けてあげます
DASHBORADの下のバーらへんにある MANAGE DOMAINをクリック
* 外部IPをAレコードしてドメインとひもづける
* CNAMEで awverify.yourdomain.com と awverify.yourdomain.azurewebsites.netを紐付け
どちらか怠ると紐付けされませんち。
これで張り替え完了です。
githubとつなげられるのべんりですね、とっても!!
Author And Source
この問題について(azure website移行作業つまった処メモ), 我々は、より多くの情報をここで見つけました https://qiita.com/usaribbon/items/373657884d3527786162著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .