facebook pixel
24Jul 2026

SSL certificates explained: a practical guide for UK websites

Hands adjusting server rack for SSL setup


TL;DR:

  • SSL certificates authenticate websites and enable encrypted HTTPS sessions, with TLS now replacing SSL as the security protocol. Browsers show trust signals like a padlock when a valid certificate is present, and UK GDPR mandates strong TLS versions for data security. Regular automated certificate management is crucial to maintain trust, legal compliance, and optimal search rankings.

An SSL certificate is a digital file installed on a web server that authenticates a website’s identity and provides the public key needed to start an encrypted HTTPS session. In practice, the protocol doing the work today is TLS (Transport Layer Security), not SSL, but the term “SSL” has stuck so firmly in common usage that even certificate authorities still sell products under that name. The distinction matters: every version of SSL is deprecated and must not be used.

Here is what you need to know at a glance:

  • Browsers show a padlock when a valid certificate is present; they display a “Not Secure” warning when one is absent or invalid.
  • The certificate authenticates the server. Encryption itself is handled by temporary session keys created during the TLS handshake.
  • UK GDPR, PCI DSS, and ICO guidance all treat TLS-backed encryption as a baseline security requirement, not an optional extra.

Table of Contents

How TLS (commonly called SSL) actually works

The certificate is the starting pistol, not the race itself. When your browser connects to a server, TLS uses the certificate to verify the server’s identity, then the two sides negotiate short-lived session keys that do the actual encrypting. The certificate itself does not encrypt your data; ephemeral session keys do, which is why forward secrecy matters.

Here is how a TLS 1.3 handshake unfolds:

  1. ClientHello — your browser sends supported cipher suites and a random value.
  2. ServerHello + certificate — the server responds with its chosen cipher, its certificate, and its ephemeral public key.
  3. Key exchange — both sides independently derive the same session keys using an ephemeral ECDHE or X25519 exchange.
  4. Finished — both sides confirm the handshake with a MAC; encrypted data flows immediately.

TLS 1.3 completes this in a single round trip, roughly halving the latency of a TLS 1.2 handshake. Ciphers such as AES-GCM and ChaCha20-Poly1305 provide both encryption and integrity (AEAD), so there is no separate MAC step to worry about.

Pro Tip: Use ephemeral key exchanges (ECDHE or X25519) in your server configuration. If a long-term private key is ever compromised, past sessions remain safe because each session used its own throwaway keys — this property is called forward secrecy.

Why the certificate chain of trust determines browser confidence

Browsers do not trust certificates blindly. They trust certificates only when the chain links back to a Root CA embedded in the browser or operating system trust store. That chain typically runs: Root CA → Intermediate CA → your leaf certificate (the one on your server).

  • Root CAs are self-signed and pre-installed in browsers and operating systems. There are relatively few of them, and they rarely issue certificates directly.
  • Intermediate CAs sit between the root and your certificate. They are the entities that DigiCert, GlobalSign, Sectigo, and Let’s Encrypt use to sign leaf certificates day-to-day.
  • Leaf certificates are what you install on your server. If you omit the intermediate certificate when installing, browsers cannot complete the chain and will show a trust error even though your certificate itself is perfectly valid.

A broken chain is one of the most common causes of browser warnings in the wild. The intermediate revocation or omission problem is particularly easy to miss because some browsers cache intermediates and appear to work fine while others fail entirely.

Certificate Transparency (CT) logs give you a public, auditable trail of every certificate issued for your domain. Chrome requires CAs to log all certificates to public CT logs. You can monitor crt.sh to spot any certificate issued for your domain that you did not request, which is an early warning of mis-issuance or domain hijacking.

Validation levels: DV, OV and EV — which do you need?

All three validation levels provide identical encryption strength. The difference is entirely in what the certificate authority verifies before issuing, and how long that takes.

Hands exchanging certificate validation documents

Validation level What is verified Typical use case Time to issue Cost User-facing signal
DV (Domain Validation) Control of the domain only Blogs, portfolios, low-risk sites Minutes Free to low Padlock
OV (Organisation Validation) Domain + legal existence of the organisation Business sites, portals handling user data 1–3 days Moderate Padlock + org details in cert
EV (Extended Validation) Domain + full legal and operational vetting High-assurance commerce, regulated services 1–2 weeks Higher Padlock (EV green bar deprecated in most browsers)

For most UK small businesses and blogs, a DV certificate from Let’s Encrypt is perfectly adequate. OV makes sense when you handle user accounts, personal data, or sensitive enquiries and want the certificate to carry your organisation’s verified name. EV was once associated with a prominent green address bar, but major browsers deprecated that visual indicator, so the conversion-rate argument for EV is weaker than it once was. For regulated financial services or payment-heavy sites, EV still signals rigorous vetting to technically aware users who inspect certificate details.

Pro Tip: OV and EV certificates require manual document submission and CA review. If you are launching a site with a deadline, apply for OV or EV at least two weeks in advance — a last-minute DV certificate can bridge the gap, but swapping certificates close to launch adds unnecessary risk.

Infographic showing SSL certificate types and steps

Single-domain, wildcard and multi-domain certificates: choosing the right scope

Choose by scope first, then by cost and automation complexity.

  • Single-domain covers exactly one hostname (e.g. www.example.co.uk). Simplest to obtain and automate; ideal for a single-product site or blog.
  • Wildcard covers a domain and all first-level subdomains (*.example.co.uk). One certificate protects shop.example.co.uk, blog.example.co.uk, and api.example.co.uk simultaneously. DNS-01 validation is required for wildcard issuance via Let’s Encrypt.
  • SAN / multi-domain covers multiple distinct domains in a single certificate (e.g. example.co.uk, example.com, myotherbrand.co.uk). Useful for agencies or businesses running several properties; reduces the number of certificates to manage.
Scope Typical use Pros Cons
Single-domain Blog, landing page Simple, fast, often free One cert per hostname
Wildcard SaaS app, multi-subdomain site One cert for all subdomains DNS-01 required; does not cover second-level subdomains
Multi-domain (SAN) Agency, multi-brand business Consolidates management More complex CSR; paid CAs typically required

Why SSL/TLS matters for UK businesses: security, trust, SEO and GDPR

A valid TLS certificate is not just a technical nicety. For UK businesses, it sits at the intersection of legal obligation, user trust and search visibility.

  • UK GDPR and ICO guidance: The ICO states explicitly that all versions of SSL are deprecated and must not be used for public-facing HTTPS. Using outdated protocols can compromise personal data and breach the UK GDPR expectation of appropriate technical security measures. TLS 1.2 and TLS 1.3 are the required standards.
  • Browser trust signals: Browsers flag sites without valid certificates as “Not Secure,” which increases bounce rates and erodes user confidence. The padlock indicator remains the primary trust signal most visitors notice.
  • SEO: Google has used HTTPS as a ranking signal since 2014. For UK businesses investing in search visibility, running HTTP is a self-imposed handicap.
  • PCI DSS: Any site handling cardholder data must encrypt that data in transit. TLS is mandatory under most payment compliance schemes, and a misconfigured or expired certificate can put your payment processing at risk.

“TLS is the successor to SSL and all versions of SSL are deprecated and must not be used for public-facing HTTPS implementations. Using outdated SSL protocols can compromise personal data and breach UK GDPR expectations for appropriate security.” — ICO, Encryption and data transfer guidance

For a practical breakdown of how UK GDPR intersects with website security, the obligations extend beyond the certificate itself to server configuration, cipher selection and protocol version.

Pro Tip: After installing a certificate, disable TLS 1.0 and TLS 1.1 in your server configuration. Both are deprecated. Enable TLS 1.2 and TLS 1.3 only, and prefer AEAD cipher suites. This is the configuration the ICO’s guidance points towards.

How to obtain, install and maintain a certificate

You can get a certificate from a free, automated CA or a paid commercial CA. The right choice depends on your validation needs and how much support you want.

Choosing a CA:

  • Let’s Encrypt — free, automated, issues 90-day DV certificates via the ACME protocol. The right starting point for most UK websites and blogs.
  • DigiCert — commercial CA offering DV, OV and EV; strong enterprise support and long-standing browser trust.
  • GlobalSign — UK-accessible commercial CA with a broad product range including managed PKI for larger organisations.
  • Sectigo — widely used commercial CA offering competitive pricing on OV and wildcard certificates; popular with UK hosting providers.

Step-by-step process:

  1. Generate a private key and CSR on your server (or let your hosting panel do it).
  2. Choose your CA and validation method — HTTP-01 (place a file at a known URL), DNS-01 (add a TXT record), or TLS-ALPN-01.
  3. Complete validation — for DV this is automated; for OV/EV submit documentation to the CA.
  4. Install the certificate and full chain (leaf + intermediate) on your server.
  5. Enable OCSP stapling to speed up revocation checks for visitors.
  6. Enable HSTS (Strict-Transport-Security header) to tell browsers to always use HTTPS.
  7. Test the configuration with SSL Labs before going live.

Pro Tip: Let’s Encrypt certificates expire after 90 days. Automate renewals using Certbot, acme.sh, or your hosting panel’s built-in ACME client. Set a monitoring alert at 30 days before expiry as a safety net — public CAs cap certificate lifetimes at 398 days for publicly trusted certificates, so automation is now the operational norm.

How to check a certificate and fix common problems

Most certificate issues fall into a short list of predictable categories. Knowing which error maps to which fix saves significant time.

Quick checks you can run right now:

  • Click the padlock in your browser and select “Certificate” to view the subject, issuer, validity dates and SANs.
  • Run your domain through SSL Labs for a free, detailed report covering protocol versions, cipher suites, chain completeness and known vulnerabilities.
  • Search crt.sh for your domain to see every certificate ever issued for it via CT logs.
  • Use openssl s_client -connect yourdomain.co.uk:443 from a terminal to inspect the raw handshake and chain.
Error Likely cause Recommended fix
Certificate expired Renewal not automated Renew immediately; enable ACME automation
Incomplete chain / untrusted Missing intermediate certificate Install the full chain (leaf + intermediate)
Name mismatch Certificate does not cover the hostname Issue a new certificate with the correct SAN
Mixed content warning HTTP resources on an HTTPS page Update all asset URLs to HTTPS or use protocol-relative paths
Weak protocol / cipher TLS 1.0 or 1.1 still enabled Disable legacy protocols; enable TLS 1.2 and 1.3 only

If SSL Labs returns a grade below A, address the flagged issues before launch. A grade of A or A+ is achievable on most standard hosting stacks with correct configuration.

Installing SSL certificates on common UK hosting platforms

The installation path varies by platform, but the underlying steps are consistent.

Hands typing SSL installation checklist on keyboard

cPanel hosting (common with UK hosts such as 123 Reg, Heart Internet): Navigate to cPanel → SSL/TLS → “Manage SSL sites.” Paste your certificate, private key and CA bundle into the respective fields, then click “Install Certificate.” Many cPanel hosts now offer AutoSSL, which provisions and renews Let’s Encrypt certificates automatically with no manual steps.

Plesk hosting: Go to Domains → your domain → SSL/TLS Certificates. Upload the certificate files or use the built-in Let’s Encrypt integration, which handles generation, installation and renewal automatically.

WordPress on managed hosting (e.g. Kinsta, WP Engine, SiteGround UK): Most managed WordPress hosts provision Let’s Encrypt certificates from the dashboard with a single toggle. After enabling HTTPS, install a plugin such as Really Simple SSL to update internal URLs and set the HSTS header without editing server config files directly.

Apache (self-managed VPS or dedicated server): Install Certbot, run certbot --apache -d yourdomain.co.uk, and Certbot will obtain, install and configure the certificate automatically. It also adds a cron job for renewal.

Nginx: Run certbot --nginx -d yourdomain.co.uk. Certbot edits your Nginx config to add the certificate paths and redirect HTTP to HTTPS. Verify the configuration with nginx -t before reloading.

After installation on any platform, confirm the redirect from HTTP to HTTPS is in place and test with SSL Labs.

PCI DSS and UK e-commerce compliance beyond GDPR

For UK online retailers, a valid TLS certificate is a compliance floor, not a ceiling. The Payment Card Industry Data Security Standard (PCI DSS) requires that cardholder data in transit is encrypted using strong cryptography. TLS is mandatory for encrypting cardholder data under PCI DSS, and a misconfigured or expired certificate can trigger a compliance failure during a QSA assessment.

PCI DSS v4.0 also requires that TLS 1.0 is disabled and that TLS 1.1 is treated as a risk to be mitigated. Running TLS 1.2 and 1.3 exclusively satisfies both the PCI and ICO requirements simultaneously. For e-commerce sites processing payments, the certificate configuration, cipher suite selection and protocol version all appear on a PCI self-assessment questionnaire (SAQ) or external scan report. A weak SSL Labs grade is a red flag that auditors will notice.

Beyond PCI, the Consumer Rights Act 2015 and FCA regulations for financial services create additional obligations around data security that TLS supports. A certificate alone does not make a site compliant, but operating without one makes compliance impossible.

How HTTPS affects your UK search ranking and user trust

Google confirmed HTTPS as a ranking signal in 2014 and has progressively increased its weight. For competitive UK search terms, the difference between HTTP and HTTPS is rarely the deciding factor on its own, but it compounds with other technical signals. A site flagged as “Not Secure” also suffers indirectly: users who see the warning leave faster, and higher bounce rates feed back into ranking signals over time.

User trust is the more immediate impact. Research consistently shows that visitors are less likely to submit forms, make purchases, or share personal details on sites displaying a “Not Secure” warning. For UK SMEs where every conversion counts, that friction is a real cost. The importance of SSL certificates for UK small businesses extends well beyond compliance: it is a basic expectation that visitors now bring to every site they visit.

Technical SEO audits routinely flag HTTP pages, mixed-content warnings and expired certificates as issues that suppress crawl efficiency and ranking potential. Fixing them is among the highest-return technical improvements available to most sites.

Cost considerations for paid SSL certificates in the UK market

Let’s Encrypt has made DV certificates free for any domain owner, which is the right starting point for most sites. Paid certificates from DigiCert, GlobalSign and Sectigo carry costs that reflect the additional vetting, warranty, and support they provide.

OV certificates from commercial CAs typically range from around £50 to £200 per year for a single domain, depending on the CA and whether you purchase direct or through a reseller. Wildcard OV certificates sit higher. EV certificates command a premium reflecting the extended vetting process, and prices vary considerably depending on the certificate authority and other factors.

For UK SMEs, the practical decision tree is straightforward: use Let’s Encrypt for DV on standard sites, budget for a commercial OV certificate if your organisation’s verified name in the certificate matters to your audience, and reserve EV for regulated or high-assurance contexts where the vetting process itself has compliance value. Avoid paying for features you do not need: the encryption is identical across all levels.

Key takeaways

An SSL/TLS certificate authenticates your server and enables HTTPS encryption; without one, UK GDPR compliance, PCI DSS obligations, browser trust and search ranking are all compromised.

Point Details
Certificate = authentication + TLS enabler The certificate proves identity and supplies the public key; session keys handle the actual encryption.
Use TLS 1.2 or 1.3 only ICO guidance requires disabling all SSL versions and legacy TLS; configure your server accordingly.
Automate renewals Let’s Encrypt issues short-lived certificates, commonly with a validity period of around three months (about 90 days) Let’s Encrypt; use Certbot or acme.sh to renew automatically and avoid expiry.
Match validation to risk DV for blogs and basic sites; OV for organisations handling user data; EV for regulated or high-assurance services.
Brainiacmedia for managed support Brainiacmedia handles certificate installation, chain configuration, renewal automation and compliance checks for UK businesses.

Why certificate management deserves more attention than most SMEs give it

The pattern we see repeatedly at Brainiacmedia is not a lack of awareness that certificates matter. Most site owners know they need HTTPS. The gap is operational: a certificate gets installed at launch, nobody sets up automated renewal, and six months later a client rings to say their site is showing a security warning to every visitor. By that point, the damage to trust and search ranking has already accumulated.

The more insidious version is a misconfigured chain. A site can show a padlock in Chrome (which caches intermediates aggressively) while failing completely in Safari or on certain mobile browsers, because the intermediate certificate was never installed server-side. SSL Labs will catch this in under a minute, but most SMEs never run the test.

What actually reduces risk is treating certificate management the way you treat domain renewal: automated, monitored, and not dependent on someone remembering. For busy teams, managed certificate services that bundle installation, renewal and alerting into a support arrangement are worth the cost, not because the technical steps are difficult, but because the consequences of forgetting are disproportionate to the effort of preventing them.

Brainiacmedia’s managed certificate and web support service

Brainiacmedia takes the operational burden of certificate management off your plate entirely. Rather than leaving your team to track renewal dates, configure server chains, and interpret SSL Labs reports, our web development service covers certificate installation, intermediate chain configuration, automated renewal setup and ongoing monitoring as part of a managed support arrangement.

Brainiacmedia

For UK e-commerce businesses, this extends to TLS configuration aligned with PCI DSS requirements and ICO guidance, so your site meets compliance expectations without your team needing to become server administrators. Whether you are launching a new site or inheriting a poorly configured one, get in touch via our ecommerce web design service page or contact us directly to discuss what managed support looks like for your situation.

Useful sources and testing tools

  • ICO: Encryption and data transfer — the UK regulator’s guidance on TLS versions, deprecated protocols and UK GDPR obligations for data in transit. Start here for compliance questions.
  • SSL Labs by Qualys — free online scanner that grades your server’s TLS configuration, identifies weak ciphers, checks chain completeness and flags known vulnerabilities.
  • crt.sh — public Certificate Transparency log search. Use it to audit every certificate ever issued for your domain and spot unexpected issuances.
  • Cloudflare Learning: What is an SSL certificate? — clear, well-maintained primer on certificate basics and browser behaviour.
  • Let’s Encrypt — the free, automated CA. Their documentation covers ACME, Certbot setup and DNS-01 validation for wildcard certificates.
  • AWS: SSL vs TLS — useful reference on the protocol history, deprecation timeline and the difference between SSL and TLS certificates.
  • Brainiacmedia: Why use SSL certificates — a guide for UK businesses — a practical, marketing-focused companion piece covering how certificates support UK data protection and customer trust.
  • Brainiacmedia: Digital marketing compliance tips for UK SMEs — broader compliance context including TLS, GDPR and digital security best practice for UK businesses.

This article is general information, not legal or compliance advice. Confirm current ICO guidance, PCI DSS requirements and your specific obligations with the relevant primary sources or a qualified professional.

You'd be Mad to Miss This!
FREE Website & SEO Audit
Claim Yours

Find out how you can get more visitors to your website and boost sales and conversions.