diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-10-01 14:33:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 14:33:48 +0100 |
commit | cb4b93b16ca60099699bfcde0e2dcec30b4153d8 (patch) | |
tree | 952716af3ee559feb8cd1319b8be0bb4b96b6f3e /docs | |
parent | b1d5360335ef9b26f62504282669403f6f3e6df5 (diff) |
Add nginx sample reverse proxy configs (#1458)
* Add nginx sample reverse proxy configs
* Add line breaks at end of files
Diffstat (limited to 'docs')
-rw-r--r-- | docs/nginx/monolith-sample.conf | 24 | ||||
-rw-r--r-- | docs/nginx/polylith-sample.conf | 36 |
2 files changed, 60 insertions, 0 deletions
diff --git a/docs/nginx/monolith-sample.conf b/docs/nginx/monolith-sample.conf new file mode 100644 index 00000000..4129729f --- /dev/null +++ b/docs/nginx/monolith-sample.conf @@ -0,0 +1,24 @@ +server { + listen 443 ssl; + 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 { + return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }'; + } + + location = /_matrix { + proxy_pass http://monolith:8008; + } +} diff --git a/docs/nginx/polylith-sample.conf b/docs/nginx/polylith-sample.conf new file mode 100644 index 00000000..b2a91b0c --- /dev/null +++ b/docs/nginx/polylith-sample.conf @@ -0,0 +1,36 @@ +server { + listen 443 ssl; + 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 { + return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }'; + } + + 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; + } +} |