2020-10-01 13:33:48 +00:00
|
|
|
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;
|
|
|
|
|
2020-10-01 13:41:08 +00:00
|
|
|
location /.well-known/matrix/server {
|
2020-10-01 13:33:48 +00:00
|
|
|
return 200 '{ "m.server": "my.hostname.com:443" }';
|
|
|
|
}
|
|
|
|
|
2020-10-01 13:41:08 +00:00
|
|
|
location /.well-known/matrix/client {
|
2020-10-01 13:33:48 +00:00
|
|
|
return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }';
|
|
|
|
}
|
|
|
|
|
2020-10-01 13:41:08 +00:00
|
|
|
location /_matrix {
|
2020-10-01 13:33:48 +00:00
|
|
|
proxy_pass http://monolith:8008;
|
|
|
|
}
|
|
|
|
}
|