Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jelmer/redirect-webfinger
Simple webfinger redirect implementation (to e.g. another Mastodon server)
https://github.com/jelmer/redirect-webfinger
mastodon webfinger
Last synced: 13 days ago
JSON representation
Simple webfinger redirect implementation (to e.g. another Mastodon server)
- Host: GitHub
- URL: https://github.com/jelmer/redirect-webfinger
- Owner: jelmer
- License: apache-2.0
- Created: 2022-11-09T17:27:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-08T18:14:22.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T00:06:35.423Z (8 months ago)
- Topics: mastodon, webfinger
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 7
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: COPYING
Awesome Lists containing this project
README
Simple redirecting webfinger implementation
===========================================This simple webfinger implementation just redirects
a single webfinger address to another server. I use it to
allow people to find my mastodon profile via my
personal server.Example usage::
$ redirect-webfinger [email protected] \
--mastodon-server=mastodon.cloud \
--mastodon-user=jelmerThe only URL it exposes is /.well-known/webfinger, which
you would probably want to expose via your reverse HTTP proxy.Or using docker/podman::
$ podman run ghcr.io/jelmer/redirect-webfinger \
-e [email protected] \
-e MASTODON_SERVER=mastodon.cloud \
-e MASTODON_USER=jelmer