matrixsynapse: Remove hard-coded URL

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2019-02-13 15:38:45 -08:00
parent a918f9a885
commit 3961ccf415
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -36,12 +36,13 @@
{% if not has_valid_certificate %}
<div class="alert alert-warning" role="alert">
{% url 'letsencrypt:index' as letsencrypt_url %}
{% blocktrans %}
The configured domain name is using a self-signed certificate.
Federation with other Matrix Synapse instances requires a valid TLS certificate.
Please go to <a href="/plinth/sys/letsencrypt">Let's Encrypt</a> to obtain one.
Federation with other Matrix Synapse instances requires a valid TLS
certificate. Please go to <a href="{{ letsencrypt_url }}">Let's
Encrypt</a> to obtain one.
{% endblocktrans %}
</div>
{% endif %}
{% endblock %}