Metadata-Version: 2.1
Name: redirect-webfinger
Version: 0.0.2
Summary: Basic implementation of webfinger that redirects to another server
Home-page: https://github.com/jelmer/redirect-webfinger
Author: Jelmer Vernooĳ
Author-email: jelmer@jelmer.uk
License: Apachev2
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: POSIX
Requires-Python: >=3.9
License-File: COPYING

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 --acct=jelmer@jelmer.uk \
        --mastodon-server=https://mastodon.cloud \
        --mastodon-user=jelmer

The 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 ACCT=jelmer@jelmer.uk \
        -e MASTODON_SERVER=https://mastodon.cloud \
        -e MASTODON_USER=jelmer

