联邦宇宙(Mastodon、Fediverse)别名服务

介绍

比如您在 Mastodon 系统上的用户名为: @[email protected] ,现在您可以申请一下域名后缀的别名:

  • js.cool
  • css.fund
  • sh.gg
  • log.lu
  • kaiyuan.fund
  • v0.chat

示例:[email protected] | [email protected] 都指向到了 @[email protected]

使用自己的域名进行部署

如果您拥有自己的域名,但是没有部署 Mastodon 或者其他 Fediverse 的应用程序。可以为自己的域名设置别名。需要用到 Cloudflare Worker,参考项目: https://github.com/willin/fediverse-alias

第一步:初始化仓库

Fork 或者 Clone 该项目:

git clone https://github.com/willin/fediverse-alias.git

第二步配置

编辑 wrangler.toml:

name = "fediverse-alias"
compatibility_date = "2023-01-01"
 
# 修改为你自己的路由
routes = [
  { pattern = "yourdomain.com/.well-known/webfinger*", zone_name = "yourdomain.com" }
  # 如果有多个,继续添加
]
 
[[d1_databases]]
binding = "DB"
database_name = "dns"
# 修改为你刚创建的数据库 ID
database_id = "xxx"
  • 初始化数据

修改 migrations/0011_seeds.sql:

-- 这里是一个示例:
INSERT INTO aliases(`alias`,`account`,`owner`) VALUES('[email protected]','[email protected]','');
-- 多条记录在此处添加

第三步:部署

执行:

npm run deploy
npm run migration

赞助 Sponsor

维护者 Owner: Willin Wang

如果您对本项目感兴趣,可以通过以下方式支持我:

Donation ways:

许可证 License

Apache-2.0

The End