比如您在 Mastodon 系统上的用户名为: @willin@log.lu ,现在您可以申请一下域名后缀的别名:
示例:i@js.cool | i@v0.md 都指向到了 @willin@log.lu
如果您拥有自己的域名,但是没有部署 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('admin@yourname.com','destination@mastodon.social','');
-- 多条记录在此处添加
执行:
npm run deploy
npm run migration
维护者 Owner: Willin Wang
如果您对本项目感兴趣,可以通过以下方式支持我:
Donation ways:
Apache-2.0
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.