🚀 Feature: add your own caddy webfinger config #282

Closed
opened 2025-10-08 00:01:20 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @cnf on GitHub.

Feature description

To help people looking for it, and respond to #350 #259 #128 and #24 here is a simple caddyserver config you can add yourself to server webfinger content that satisfies fe tailscale:

yourdomain.whatever {
  handle /.well-known/webfinger {
    header Content-Type application/jrd+json
    templates
    respond <<JSON
      {
          "subject": "{query.resource}",
          "links": [
            {
              "rel": "http://openid.net/specs/connect/1.0/issuer",
              "href": "https://pocket.yourdomain.whatever"
            }
          ]
      }
    JSON 200
  }
}

You can add that to your own reverse proxy, or add it to the caddyfile supplied with pocket-id.

Have fun!

Pitch

No pitch, now people know how to take care of this themselves

Originally created by @cnf on GitHub. ### Feature description To help people looking for it, and respond to #350 #259 #128 and #24 here is a simple caddyserver config you can add yourself to server webfinger content that satisfies fe tailscale: ```Caddyfile yourdomain.whatever { handle /.well-known/webfinger { header Content-Type application/jrd+json templates respond <<JSON { "subject": "{query.resource}", "links": [ { "rel": "http://openid.net/specs/connect/1.0/issuer", "href": "https://pocket.yourdomain.whatever" } ] } JSON 200 } } ``` You can add that to your own reverse proxy, or add it to the caddyfile supplied with pocket-id. Have fun! ### Pitch No pitch, now people know how to take care of this themselves
OVERLORD added the feature label 2025-10-08 00:01:20 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/pocket-id-pocket-id-1#282