franchb / cloudflare-worker-matrix-well-known

.well-known/matrix/* handler as a CloudFlare worker

Home Page:https://franchb.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cloudflare-worker-matrix-well-known

.well-known/matrix/* handler as a CF worker

Commitizen friendly build

This Cloudflare Function allows to serve .well-known Matrix.org server delegations from your Cloudflare Pages static site main domain, like your-blog.com and run Matrix.org server on some subdomain, for example matrix.your-blog.com:1234.

The exact details of how server name resolution works can be found in the spec.

Delegation allows you to specify the server name and port that your Matrix.org installation is reachable at, or to host the Matrix.org server at a different server name to the domain that is being delegated.

For example, if your Matrix.Org server installation is actually reachable at matrix.example.com port 8448, you will be able to delegate from example.com to matrix.example.com so that your users will have @user:example.com user names instead of @user:matrix.example.com usernames.

Delegation can be performed in one of two ways:

Well-known delegation (preferred): A well-known text file is served over HTTPS on the domain name that you want to use, pointing to your server on matrix.example.com port 8448;
DNS SRV delegation (not recommended): See the SRV delegation section below for details.

Using well-known delegation requires that you are running a web server at example.com which is listening on the standard HTTPS port TCP/443.

Assuming that your Matrix.org installation is listening for HTTPS connections at matrix.example.com on port 8448, the delegation file must be served at https://example.com/.well-known/matrix/server and contain the following JSON document:

{
    "m.server": "matrix.example.com:8448"
}

License

Apache 2.0

About

.well-known/matrix/* handler as a CloudFlare worker

https://franchb.com/

License:Apache License 2.0


Languages

Language:TypeScript 74.2%Language:JavaScript 25.8%