2020-10-01 13:33:48 +00:00
|
|
|
server {
|
2020-11-18 10:33:17 +00:00
|
|
|
listen 443 ssl; # IPv4
|
2021-06-07 08:29:54 +00:00
|
|
|
listen [::]:443 ssl; # IPv6
|
2020-10-01 13:33:48 +00:00
|
|
|
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 {
|
2021-06-07 10:06:57 +00:00
|
|
|
# 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 '*';
|
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;
|
|
|
|
}
|
|
|
|
}
|