Home Matrix Synapse Meets Cloudflare Tunnels
Post
Cancel

Matrix Synapse Meets Cloudflare Tunnels

Who this is for

This post is for those using Cloudflare Tunnels and has set one up for a Matrix Synapse server. If you’re looking at setting up your own Matrix Synapse server check out my post here on setting that up, and here for configuring said server.

Workers and .well-known for federation

Setting this up will enable federation of your server, which is useful not only for communicating with other users on other Matrix servers but also for using bridges to other services. On your main Cloudflare page open Workers & Pages and create a new application, then Create Worker, then click Deploy. Once it’s deployed we’ll want to edit that Worker.

  • Click on the Worker you just created and go to Triggers. Click Add route, in the Route field enter the following:
1
matrix.my-domain.com/.well-known/matrix/*
  • Click add route, well also want to click on the three dots of the default route and disable it as it’s not needed.
  • Now click on Quick edit and paste in the following, changing your domain to match:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const HOMESERVER_URL = "https://matrix.my-domain.com";
const IDENTITY_SERVER_URL = "https://vector.im";
const FEDERATION_SERVER = "matrix.my-domain.com:443";

export default {
  async fetch(request, env) {
    const path = new URL(request.url).pathname;
    switch (path) {
      case "/.well-known/matrix/client":
        return new Response(
            `{"m.homeserver": {"base_url": "${HOMESERVER_URL}"},"m.identity_server": {"base_url": "${IDENTITY_SERVER_URL}"}}`
        );
      case "/.well-known/matrix/server":
        return new Response(`{"m.server": "${FEDERATION_SERVER}"}`);
      default:
        return new Response("Invalid request");
      }
    },
};
  • Then click Save and deploy

That’s it for setting up the worker.

Blocking metrics to the outside

This next bit is for those who have metrics turned on to monitor Synapse server activity through Prometheus. This time under Cloudflare go to your site/domain.

  • Under Security on the left hand side go to WAF
  • Click on Create rule
  • Name the rule Matrix Metrics
  • For Field select URI Path
  • For Operator select equals
  • For Value paste the following
1
/_synapse/metrics
  • For Choose action select Block
  • For With response type select Default Cloudflare WAF block page

That’s it, now we’re all see. If you found this post helpful please consider buying me a coffee at that ko-fi link below or at Buymeacoffee. Till next time, fair winds and following seas.

This post is licensed under CC BY 4.0 by the author.