mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
3bcb003248
* Added IPv6 setting to nginx conf https://matrix.to/#/!yomrOFwgFXzmeMAbzX:matrix.org/$sIkSxL002BKottY1Fop-bkusuyCJ1Y0zIFzqSWDYRrc?via=matrix.org&via=privacytools.io&via=dendrite.link * Add IPv6 support to polylith nginx conf also
26 lines
667 B
Plaintext
26 lines
667 B
Plaintext
server {
|
|
listen 443 ssl; # IPv4
|
|
listen [::]:443; # IPv6
|
|
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;
|
|
}
|
|
}
|