LoginSignup
4
0

More than 5 years have passed since last update.

Mastodonインスタンスでkeybase.ioサイト認証

Posted at

最初、Nginxで以下のような設定にしてサイト認証していたのですが、これが原因でリモートフォローできなくなっていました。

    location /.well-known/ {
        root /var/www/html;
        try_files $uri $uri/ =404;
    }

以下のようにファイル名を指定することで問題なくリモートフォローできるようになった。(Nginxの設定としてはもっといいのがあると思いますが。)

    location /.well-known/keybase.txt {
        root /var/www/html;
        try_files $uri $uri/ =404;
    }

どうも/.well-known/host-metaというのを通す必要があるようです。

ちなみに以下が署名です。

https://m.sighash.info/ の住人募集中です。

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0