dendrite/docs/nginx/monolith-sample.conf
Neil Alexander cb4b93b16c
Add nginx sample reverse proxy configs (#1458)
* Add nginx sample reverse proxy configs

* Add line breaks at end of files
2020-10-01 14:33:48 +01:00

25 lines
638 B
Plaintext

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;
}
}