Matrix/Synapse: Difference between revisions
From Bibliotheca Anonoma
Antonizoon (talk | contribs) No edit summary |
Antonizoon (talk | contribs) No edit summary |
||
Line 24: | Line 24: | ||
fi | fi | ||
</pre> | </pre> | ||
https://community.letsencrypt.org/t/how-to-use-certs-in-non-root-services/2690 | |||
add it to /etc/sysconfig/certbot , enable certbot-renew service | add it to /etc/sysconfig/certbot , enable certbot-renew service |
Revision as of 16:07, 7 September 2017
https://www.upcloud.com/support/install-matrix-synapse/
Create synapse user and /home/synapse, then follow pip virtualenv steps
create /etc/pki/synapse with permissions to synapse user chmod 600
# cat /usr/local/bin/synapse-renewal-hook #!/bin/sh echo "Letsencrypt renewal hook running..." echo "RENEWED_DOMAINS=$RENEWED_DOMAINS" echo "RENEWED_LINEAGE=$RENEWED_LINEAGE" if grep --quiet "matrix.bibanon.org" <<< "$RENEWED_DOMAINS"; then # copy over the certificate for matrix to the pki directory with correct permissions cat $RENEWED_LINEAGE/privkey.pem > /etc/pki/synapse/matrix.bibanon.org.key cat $RENEWED_LINEAGE/fullchain.pem > /etc/pki/synapse/matrix.bibanon.org.crt chown synapse:synapse /etc/pki/synapse/matrix.bibanon.org.key chown synapse:synapse /etc/pki/synapse/matrix.bibanon.org.crt chmod 600 /etc/pki/synapse/matrix.bibanon.org.key chmod 600 /etc/pki/synapse/matrix.bibanon.org.crt # systemctl restart synapse echo "synapse matrix server.pem updated. synapse may need to be restarted." fi
https://community.letsencrypt.org/t/how-to-use-certs-in-non-root-services/2690
add it to /etc/sysconfig/certbot , enable certbot-renew service