SSL Certificates

SSL Certificates

Leaseweb offers several SSL certificates to secure your website or other services. You can purchase a wide range of certificates from us. The validation options that we provide for each SSL certificate are

  1. Domain Validation (DV)
  2. Organization Validation (OV), or
  3. Extended Validation (EV)

What is the difference between Domain (DV), Organization (OV) and Extended (EV) Validation?

DV: Quickest verification process, cheaper and a secure feeling for the visitors of the website. For this certificate, the domain needs to be owned by you. This is done in a verification process in which you have to prove that you are the owner of the domain.

OV: Longer verification process, Higher price, an increasingly secure feeling for the visitors of the website over DV.
During the verification process, a questionnaire is sent to the organization with questions like ‘What is the address of the organization’. Only if all this information matches the SSL application the certificate will be provided. OV certification is often used when bank transfers or payments are part of the website.

EV: The highest form of verification, leading to a green address bar, and in most browsers the company name is highlighted.
During the verification process company details are requested and strictly checked. Checks with the Chamber of Commerce are common, and a phone call is made for verification.

How can I request a Let’s Encrypt certificate for my website?

Let’s Encrypt is only supported on our Linux web hosting platform. If you would like to have it enabled for your website, please submit a ticket in the Customer Portal. The following picture shows the variables that are filled in to help you submit it directly in the correct way:
9437198

How can I order SSL certificates with Leaseweb?

  1. Login to the Customer Portal, and on the left panel, under Hosting, select SSL Certificates.
    19497643
  2. Click the Order New Certificate button. You will be redirected to the website.
  3. Select the type of certificate you want to order and enter the domain name for which you are requesting the certificate. Click Add to cart
    Order SSL certificate

Not sure about which certificate to choose? You can have an overview of each certificate type at the top of this page.

The domain name should not contain spaces, special characters, or unsupported symbols. Only alphanumeric characters, hyphens (-) and valid domain structures (e.g., example.com) are allowed.

  1. On this page, the shopping cart is displayed. Once you’re ready, click the Checkout button to proceed.
    Order SSL shopping cart
  2. Review your Business Contact Details and Order Request. Check the Terms and Conditions boxes if you agree to them, and then click Place Order.
    Order SSL cart review
  3. Select you Payment Method & confirm you should see a success message for your order, indicating that we have started processing your order.
  4. Shortly after, you will receive an email and a notification in the Customer Portal, prompting you to configure your certificate.
  5. Click the link in the email or notification to access the certificate configuration page. Then, click continue.
    SSL config overview
  6. On this page, paste your Certificate Signing Request (CSR), https://csrgenerator.com/ and click Continue.
    SSL CSR config
  7. Select the validation method for your domain(s) and click Continue.
    SSL Config Validation methods

If your domain is managed by Leaseweb and you select DNS as the validation method, the validation process will be completed automatically for your certificate.

At this point, if you have selected an OV or EV certificate, the Leaseweb Customer Care team might try to contact you to process your order.

  1. Review the summary of your SSL certificate request, ensure all details are correct, click Submit Request.
  2. Your order is submitted and will be processed as soon as possible.

Our Customer Care team is happy to assist you with ordering and installing an SSL certificate on our Web Hosting platform. You can contact us anytime by opening a ticket under Support from the Customer Portal. In this case, please, inform us your purchase order number.

How can I manage SSL certificates?

  1. Login to Customer Portal, and on the left panel, under Hosting, select SSL Certificates.
    19497643
  2. The list of SSL certificates ordered with Leaseweb is displayed. You can see the Domain for which each of the certificates was ordered, its Type, Status, as well as Issue and Expiration Dates.
  3. When certificate are issued, you can download the corresponding installation files by clicking on the Download icon.
  4. To see more information on a specific certificate order, click on the Details icon.
    19497641
  5. You can always change the validation method for those certificates. To see the current method, click on the Show icon.
    19497640
  6. To change it, click on the Change icon. You can select File, Email or DNS validation.
    19497639
    If you select Email, then you need to provide an email address for the validation to happen.
  7. Click Save to apply your choice.

You have Sucessfully Modified your SSL Certificate Validation Method !

SSL Certificates - Frequently Asked Questions

  • Does your business require a Wildcard SSL certificate?

    If the website that has to be secured is using subdomains that require the security of the SSL as well, it is advised to use a Wildcard SSL. Without Wildcard a unique SSL certificate has to be used for every subdomain.

     

     

  • How can I add my own SSL certificate to my Leaseweb domain?

    If you have a Web Hosting pack with Leaseweb, our Customer Care team can add an SSL certificate from another provider to this domain. You can do this by opening a ticket under Support from the Customer Portal with the following information:

    – The concerning domain
    – The private key
    – The certificate
    – The Intermediate chain

    We will add the SSL certificate to your domain and inform you once it is done.

     

     

  • How can I create a CSR (SHA1 RSA key) and Private Key?

    Perform the following tasks to create a CSR:

    Tip: The best way is to use the openssl toolkit:

      1. Connect to your server by using an SSH connection.
        In order to use the toolkit you need to have root privileges.

      1. Go to the folder you wish to save your CSR and Private key. For example: cd /etc/ssl/certs

      1. Use the following command to create the SHA1 RSA key and CSR. Replace leaseweb_com with the domain you wish to create the certificates for. openssl req -utf8 -nodes -newkey rsa:2048 -keyout www_leaseweb_com.key -out www_leaseweb_com.csr

      1. You will now have to answer a few questions. Note that these questions are important for requesting your SSL certificate. The following information should be provided: CSR detail Explanation Example Country name The country your organization is legally incorporated NL State or province name The state or province your organization is legally incorporated Noord Holland Locality Name The city your organization is legally incorporated Amsterdam Organization Name Your company name Leaseweb Organizational Unit Name Your departments name Marketing Common Name The fully qualified domain name (FQDN) leaseweb.com Email address and passwords are not necessary during the creation. You can enter when it is blank.

      1. Use the ‘cat’ command to read the CSR or the private key. cat www_leaseweb_com.csr OR cat www_leaseweb_com.key

    If you do not have access to a server you can use a CSR Generator. However, we highly recommend that you create a CSR and Private Key using the openssl toolkit.