🐕

GitHub Pagesで公開するサイトに独自ドメインを設定する

2023/09/03に公開

GitHub Pagesに自作サイトをデプロイするにあたり、デフォルト設定のドメイン(example.github.io)ではなく独自でドメインを設定するための方法のメモ
無料でできて嬉しい

やること

  • ドメインの取得
  • DNSの設定と対応づけ
  • GitHub Pagesでの設定

ドメインの取得

お名前.comを利用させてもらいました
https://www.onamae.com

かなしい

inuo.comは誰かに取られていた(この世界にいぬおなんて名前を使う人がいるなんてな)
なのでinutotori.comをとりました
ダックハントが好きなので
https://en.wikipedia.org/wiki/Duck_Hunt

DNSレコードの設定

まずinuo.github.ioとwww.inutotori.comを対応づけてあげる
あとはGithub Pageのドキュメントに従えばOK

ホスト名 TYPE TTL VALUE
www.inutotori.com CNAME 3600 inuo.github.io
inutotori.com A 3600 185.199.108.153
inutotori.com A 3600 185.199.109.153
inutotori.com A 3600 185.199.110.153
inutotori.com A 3600 185.199.111.153

https://docs.github.com/ja/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site

GitHub Pagesの設定

リポジトリのSettingタグの中から、左ペインのPagesを選択
カスタムドメインにinutotori.comを設定して完了
少しDNSチェックに時間かかるかも

できたとこ

https://inutotori.com
※今は非公開

Discussion