aboutsummaryrefslogtreecommitdiff
path: root/docs/nginx
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/nginx
parent11b557097c6745309c09b58f681080d3fcc4f9f5 (diff)
Docs restructure (#2953)
Needs to be merged into `gh-pages` later on.
Diffstat (limited to 'docs/nginx')
-rw-r--r--docs/nginx/dendrite-sample.conf (renamed from docs/nginx/monolith-sample.conf)0
-rw-r--r--docs/nginx/polylith-sample.conf58
2 files changed, 0 insertions, 58 deletions
diff --git a/docs/nginx/monolith-sample.conf b/docs/nginx/dendrite-sample.conf
index 360eb925..360eb925 100644
--- a/docs/nginx/monolith-sample.conf
+++ b/docs/nginx/dendrite-sample.conf
diff --git a/docs/nginx/polylith-sample.conf b/docs/nginx/polylith-sample.conf
deleted file mode 100644
index 0ad24509..00000000
--- a/docs/nginx/polylith-sample.conf
+++ /dev/null
@@ -1,58 +0,0 @@
-server {
- listen 443 ssl; # IPv4
- listen [::]:443 ssl; # IPv6
- server_name my.hostname.com;
-
- ssl_certificate /path/to/fullchain.pem;
- ssl_certificate_key /path/to/privkey.pem;
- ssl_dhparam /path/to/ssl-dhparams.pem;
-
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_read_timeout 600;
-
- location /.well-known/matrix/server {
- return 200 '{ "m.server": "my.hostname.com:443" }';
- }
-
- location /.well-known/matrix/client {
- # If your sever_name here doesn't match your matrix homeserver URL
- # (e.g. hostname.com as server_name and matrix.hostname.com as homeserver URL)
- # add_header Access-Control-Allow-Origin '*';
- return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }';
- }
-
- # 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
- location ~ /_matrix/client/.*?/(sync|user/.*?/filter/?.*|keys/changes|rooms/.*?/(messages|.*?_?members|context/.*?|relations/.*?|event/.*?))$ {
- proxy_pass http://sync_api:8073;
- }
-
- location /_matrix/client {
- proxy_pass http://client_api:8071;
- }
-
- location /_matrix/federation {
- proxy_pass http://federation_api:8072;
- }
-
- location /_matrix/key {
- proxy_pass http://federation_api:8072;
- }
-
- location /_matrix/media {
- proxy_pass http://media_api:8074;
- }
-}