一个开源的联邦宇宙(Mastodon、Fediverse)别名服务

查看 24|回复 0
作者:willin   
介绍
  • 网站: https://alias.willin.wang
  • 开源代码仓库: https://github.com/willin/alias

    比如您在 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
    第二步配置
  • 配置域名路由
  • 修改数据库 ID (参考创建数据库文档)

    编辑 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
    如果您对本项目感兴趣,可以通过以下方式支持我:
  • 关注我的 Github 账号:@willin
  • 参与 爱发电 计划
  • 支付宝或微信扫码打赏

    Donation ways:
  • Github: https://github.com/sponsors/willin
  • Paypal: https://paypal.me/willinwang
  • Alipay or Wechat Pay: QRCode

    许可证 License
    Apache-2.0
  • 您需要登录后才可以回帖 登录 | 立即注册

    返回顶部