diff --git a/install.sh b/install.sh index 7c5f39d..9c6dab9 100755 --- a/install.sh +++ b/install.sh @@ -214,9 +214,6 @@ systemctl enable --now nginx echo -e "Generate SSL cert\n" certbot --nginx -d ${DOMAIN} --agree-tos --register-unsafely-without-email -# Add certbot SSL cert renewal to crontab -crontab -l | { cat; echo '43 6 * * * certbot renew --post-hook "systemctl reload nginx"'; } | crontab - - # Add custom 8448 SSL port for Matrix Federation sed -i '/listen\ 443\ ssl/a\\tlisten\ 8448\ ssl\;' /etc/nginx/sites-enabled/default nginx -s reload @@ -227,3 +224,6 @@ systemctl enable --now coturn # Finally, start services # Ensuring the DB dir is clean before bootstrapping systemctl enable --now matrix.service + +# Add certbot SSL cert renewal to crontab +crontab -l | { cat; echo '43 6 * * * certbot renew --post-hook "systemctl reload nginx"'; } | crontab -