aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2020-10-01 14:41:08 +0100
committerNeil Alexander <neilalexander@users.noreply.github.com>2020-10-01 14:41:08 +0100
commit43b3c4a2fc493fa6cacf0174f8c9f31f6b9c88c1 (patch)
tree0dd6f5f91de665b4addcc004e84d8e6e586e6631
parentcb4b93b16ca60099699bfcde0e2dcec30b4153d8 (diff)
Fix bugs in nginx sample configs
-rw-r--r--docs/nginx/monolith-sample.conf6
-rw-r--r--docs/nginx/polylith-sample.conf12
2 files changed, 9 insertions, 9 deletions
diff --git a/docs/nginx/monolith-sample.conf b/docs/nginx/monolith-sample.conf
index 4129729f..9ee5e1ac 100644
--- a/docs/nginx/monolith-sample.conf
+++ b/docs/nginx/monolith-sample.conf
@@ -10,15 +10,15 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 600;
- location = /.well-known/matrix/server {
+ location /.well-known/matrix/server {
return 200 '{ "m.server": "my.hostname.com:443" }';
}
- location = /.well-known/matrix/client {
+ location /.well-known/matrix/client {
return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }';
}
- location = /_matrix {
+ location /_matrix {
proxy_pass http://monolith:8008;
}
}
diff --git a/docs/nginx/polylith-sample.conf b/docs/nginx/polylith-sample.conf
index b2a91b0c..658e0e4a 100644
--- a/docs/nginx/polylith-sample.conf
+++ b/docs/nginx/polylith-sample.conf
@@ -10,27 +10,27 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_read_timeout 600;
- location = /.well-known/matrix/server {
+ location /.well-known/matrix/server {
return 200 '{ "m.server": "my.hostname.com:443" }';
}
- location = /.well-known/matrix/client {
+ location /.well-known/matrix/client {
return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }';
}
- location = /_matrix/client {
+ location /_matrix/client {
proxy_pass http://client_api:8071;
}
- location = /_matrix/federation {
+ location /_matrix/federation {
proxy_pass http://federation_api:8072;
}
- location = /_matrix/key {
+ location /_matrix/key {
proxy_pass http://federation_api:8072;
}
- location = /_matrix/media {
+ location /_matrix/media {
proxy_pass http://media_api:8074;
}
}