From 3ac4b8aca853426473288c5928ad42dc6b6bf882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marius=20Blu=CC=88m?= Date: Tue, 27 Sep 2016 15:06:50 +0200 Subject: [PATCH] Remove Certificate Providers / Fix #950 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marius Blüm --- management/templates/ssl.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/management/templates/ssl.html b/management/templates/ssl.html index cefc82fd..0cc4d59a 100644 --- a/management/templates/ssl.html +++ b/management/templates/ssl.html @@ -55,7 +55,7 @@

Install certificate

-

There are many other places where you can get a free or cheap certificate. If you don't want to use our automatic Let's Encrypt integration, you can give Namecheap’s $9 certificate, StartSSL’s free express lane, WoSign’s free TLS or any other certificate provider a try.

+

If you don't want to use our automatic Let's Encrypt integration, you can give any other certificate provider a try. You can generate the needed CSR below.

Which domain are you getting a certificate for?

@@ -108,7 +108,7 @@ function show_tls(keep_provisioning_shown) { $('#ssl_provision_p').toggle(res.can_provision.length > 0); if (res.can_provision.length > 0) $('#ssl_provision_p span').text(res.can_provision.join(", ")); - + $('#ssl_provision_problems_div').toggle(res.cant_provision.length > 0); $('#ssl_provision_problems tbody').text(""); for (var i = 0; i < res.cant_provision.length; i++) { @@ -260,7 +260,7 @@ function provision_tls_cert() { } } ready_to_finish(); - + // don't re-enable the Provision button -- user must use the Retry button when it becomes enabled may_reenable_provision_button = false; @@ -268,7 +268,7 @@ function provision_tls_cert() { n.find("p").addClass("text-success").text("The TLS certificate was provisioned and installed."); setTimeout("show_tls(true)", 1); // update main table of certificate statuses, call with arg keep_provisioning_shown true so that we don't clear what we just outputted } - + // display the detailed log info in case of problems var trace = $("
Log:
"); n.append(trace);