HostingChecker

Glossary

HTTPS

HTTPS is HTTP layered over TLS encryption, so data exchanged between browser and website stays private, authenticated, and tamper-proof.

HTTPS (HyperText Transfer Protocol Secure) is ordinary http carried inside an encrypted ssl-tls tunnel. It is the default scheme for the modern web and is signalled by the padlock icon and the https:// prefix.

What changes versus HTTP

  • All request and response data is encrypted.
  • The server's identity is verified by a TLS certificate.
  • Default port shifts from 80 to 443.

Why it matters for hosting

Browsers now treat plain HTTP as insecure, search engines favour HTTPS, and many APIs and browser features (geolocation, service workers, http-2) require it. Most hosts and CDNs offer free automatic certificates, so enabling HTTPS is usually a one-click step.

To stop visitors ever reaching the insecure version, pair HTTPS with hsts, which instructs browsers to always upgrade requests to secure connections.

See also