2022-01-21 15:37:59 +01:00
|
|
|
#change IP to location of monolith server
|
|
|
|
upstream monolith{
|
|
|
|
server 127.0.0.1:8008;
|
|
|
|
}
|
2020-10-01 15:33:48 +02:00
|
|
|
server {
|
2020-11-18 11:33:17 +01:00
|
|
|
listen 443 ssl; # IPv4
|
2021-06-07 10:29:54 +02:00
|
|
|
listen [::]:443 ssl; # IPv6
|
2020-10-01 15:33:48 +02: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 15:41:08 +02:00
|
|
|
location /.well-known/matrix/server {
|
2020-10-01 15:33:48 +02:00
|
|
|
return 200 '{ "m.server": "my.hostname.com:443" }';
|
|
|
|
}
|
|
|
|
|
2020-10-01 15:41:08 +02:00
|
|
|
location /.well-known/matrix/client {
|
2021-06-07 12:06:57 +02: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 15:33:48 +02:00
|
|
|
return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }';
|
|
|
|
}
|
|
|
|
|
2020-10-01 15:41:08 +02:00
|
|
|
location /_matrix {
|
2022-01-21 15:37:59 +01:00
|
|
|
proxy_pass http://monolith;
|
2020-10-01 15:33:48 +02:00
|
|
|
}
|
|
|
|
}
|