2018-06-09   mastodon   web   apache 

Mastodonインスタンスを停止するとき(410 Goneを返す)

結果

ファイル

.htaccess

ErrorDocument 410 /index.html

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/index.html$
RewriteCond %{REQUEST_URI} !^/gone.png$
RewriteRule ^.*$ "-" [G,NC]

index.html

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8">
    <title>410 Gone - social.hyuki.net</title>
    <style>
.fullfit {
  width: auto;
  height: auto;
  max-width: 30%;
  max-height: 30%;
}
    </style>
  </head>
  <body style="margin: 2% 10% 10% 10%">
    <h1>social.hyuki.netは運用を停止しています。</h1>
    <p>
    おひとりさまインスタンス social.hyuki.net は運用を停止しています。
    </p><p>
    再開の予定はありません。
    </p>
    <p style="text-align: left">
    <img class="fullfit" src="gone.png">
    </p>
    <p>
    結城浩のMastodonアカウントは<a href="https://mstdn.jp/@hyuki0000">mstdn.jp/@hyuki0000</a>がメインになります(更新はあまりありませんけれど)。
    </p>
    <p>
    結城浩のTwitterアカウントは<a href="https://twitter.com/hyuki">hyuki</a>です。
    </p>
  </body>
</html>

参照

謝辞

後日談(2022-11-15)

結城浩のマストドン、再開しました。

 2018-06-09   mastodon   web   apache