https://github.com/t-fowl/authentik-webfinger
Simple go webserver supporting webfingers backed by authentik
https://github.com/t-fowl/authentik-webfinger
authentik webfinger
Last synced: 6 months ago
JSON representation
Simple go webserver supporting webfingers backed by authentik
- Host: GitHub
- URL: https://github.com/t-fowl/authentik-webfinger
- Owner: T-Fowl
- License: mit
- Created: 2024-11-07T22:58:01.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-11-07T23:34:35.000Z (11 months ago)
- Last Synced: 2025-01-29T10:29:47.825Z (8 months ago)
- Topics: authentik, webfinger
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deprecation Notice
Authentik now has this feature natively, although without avatar support.## Use case
Provides webfinger discovery backed by authentik.An example of this is setting up a tailscale account with self hosted sso through authentik.
## Config
`config.toml` example:
```toml
Host = ":8080"
AuthentikHost = "authentik.example.com"
Token = "changeme"
UserAgent = "tfowl/authentik-webfinger (https://github.com/T-Fowl/authentik-webfinger)"
AuthentikApplication = "tailscale"
```## Reverse Proxy Usage
### Caddy
```
:443 {
handle /.well-known/webfinger {
reverse_proxy localhost:8080
}
handle {
reverse_proxy other_backend_servers
}
}
```### Nginx
```
location /.well-known/webfinger {
proxy_pass http://localhost:8080;
}
location / {
...
}
```