From 31fceae121644d56ca01a729fbda6666eabbe9b2 Mon Sep 17 00:00:00 2001 From: "Haoran S. Diao" <0@hairydiode.xyz> Date: Sun, 17 Mar 2019 19:52:57 -0400 Subject: updated mit page, added page on new matrix homeserver --- cont/matrix.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 cont/matrix.html (limited to 'cont/matrix.html') diff --git a/cont/matrix.html b/cont/matrix.html new file mode 100644 index 0000000..1b8f304 --- /dev/null +++ b/cont/matrix.html @@ -0,0 +1,31 @@ +[TITLE] [DATE] +-------------------------------------------------------------------------------- +[SETTITLE]Matrix Homeserver +[SETDATE]3-17-2019 + +I have a matrix now! + +@zero:hairydiode.xyz + +For those of you like me who ran nginx in front of synapse, the configuration +given by the synapse documentation is incomplete. For the port 8448 server you +need to include your ssl certificates just like you would for any other https +server. + +For example, if you use letsencrypt, the following is the complete server config +for port 8448: + +server { + listen 8448 ssl default_server; + listen [::]:8448 ssl default_server; + ssl_certificate /etc/letsencrypt/live/[domain]/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/[domain]/privkey.pem; + server_name [domain]; + + location / { + proxy_pass http://localhost:8008; + proxy_set_header X-Forwarded-For $remote_addr; + } +} -- cgit v1.1