aboutsummaryrefslogtreecommitdiff
path: root/docs/hiawatha
diff options
context:
space:
mode:
authorTill <2353100+S7evinK@users.noreply.github.com>2023-05-30 10:02:53 +0200
committerGitHub <noreply@github.com>2023-05-30 10:02:53 +0200
commitf956a8c1d9172f6bbfb9f7515feacd477a0e35f5 (patch)
tree18a02759cc674eb79b3b1b1168abd3d6d5a65e54 /docs/hiawatha
parent11b557097c6745309c09b58f681080d3fcc4f9f5 (diff)
Docs restructure (#2953)
Needs to be merged into `gh-pages` later on.
Diffstat (limited to 'docs/hiawatha')
-rw-r--r--docs/hiawatha/dendrite-sample.conf (renamed from docs/hiawatha/monolith-sample.conf)0
-rw-r--r--docs/hiawatha/polylith-sample.conf35
2 files changed, 0 insertions, 35 deletions
diff --git a/docs/hiawatha/monolith-sample.conf b/docs/hiawatha/dendrite-sample.conf
index 8285c0bd..8285c0bd 100644
--- a/docs/hiawatha/monolith-sample.conf
+++ b/docs/hiawatha/dendrite-sample.conf
diff --git a/docs/hiawatha/polylith-sample.conf b/docs/hiawatha/polylith-sample.conf
deleted file mode 100644
index eb1dd4f9..00000000
--- a/docs/hiawatha/polylith-sample.conf
+++ /dev/null
@@ -1,35 +0,0 @@
-# Depending on which port is used for federation (.well-known/matrix/server or SRV record),
-# ensure there's a binding for that port in the configuration. Replace "FEDPORT" with port
-# number, (e.g. "8448"), and "IPV4" with your server's ipv4 address (separate binding for
-# each ip address, e.g. if you use both ipv4 and ipv6 addresses).
-
-Binding {
- Port = FEDPORT
- Interface = IPV4
- TLScertFile = /path/to/fullchainandprivkey.pem
-}
-
-
-VirtualHost {
- ...
- # route requests to:
- # /_matrix/client/.*/sync
- # /_matrix/client/.*/user/{userId}/filter
- # /_matrix/client/.*/user/{userId}/filter/{filterID}
- # /_matrix/client/.*/keys/changes
- # /_matrix/client/.*/rooms/{roomId}/messages
- # /_matrix/client/.*/rooms/{roomId}/context/{eventID}
- # /_matrix/client/.*/rooms/{roomId}/event/{eventID}
- # /_matrix/client/.*/rooms/{roomId}/relations/{eventID}
- # /_matrix/client/.*/rooms/{roomId}/relations/{eventID}/{relType}
- # /_matrix/client/.*/rooms/{roomId}/relations/{eventID}/{relType}/{eventType}
- # /_matrix/client/.*/rooms/{roomId}/members
- # /_matrix/client/.*/rooms/{roomId}/joined_members
- # to sync_api
- ReverseProxy = /_matrix/client/.*?/(sync|user/.*?/filter/?.*|keys/changes|rooms/.*?/(messages|.*?_?members|context/.*?|relations/.*?|event/.*?))$ http://localhost:8073 600
- ReverseProxy = /_matrix/client http://localhost:8071 600
- ReverseProxy = /_matrix/federation http://localhost:8072 600
- ReverseProxy = /_matrix/key http://localhost:8072 600
- ReverseProxy = /_matrix/media http://localhost:8074 600
- ...
-}