HTTPS

Protocols & Standards
Hypertext Transfer Protocol Secure.
← Back to Glossary

What is HTTPS?

HTTPS (Hypertext Transfer Protocol Secure) is the secure version of HTTP, the protocol used for communication between web browsers and servers. HTTPS encrypts all data transmitted between client and server using TLS (Transport Layer Security), protecting sensitive information from interception and tampering. Indicated by a padlock icon in browsers, HTTPS has become the standard for all websites, not just those handling financial transactions.

How HTTPS Works

The TLS Handshake

1. Client Hello: Browser initiates connection with supported cipher suites

2. Server Hello: Server selects cipher suite and sends certificate

3. Certificate Verification: Browser validates certificate chain

4. Key Exchange: Asymmetric encryption establishes session key

5. Secure Channel: Symmetric encryption begins for data transfer

Encryption Process

HTTP Request (unencrypted):

GET /login HTTP/1.1

Cookie: session=abc123

HTTPS Request (encrypted):

[Binary encrypted data - unreadable to interceptors]

Benefits of HTTPS

BenefitDescription
Data encryptionPrevents eavesdropping on transmitted data
Data integrityDetects tampering during transmission
AuthenticationVerifies website identity via certificates
SEO advantageGoogle prioritizes HTTPS sites in rankings
User trustPadlock icon signals security to visitors
ComplianceRequired for PCI-DSS, GDPR, and other regulations

SSL/TLS Certificate Types

Domain Validation (DV)

Organization Validation (OV)

Extended Validation (EV)

Implementing HTTPS

Certificate Acquisition

1. Generate a Certificate Signing Request (CSR)

2. Submit CSR to Certificate Authority (CA)

3. Complete domain/organization validation

4. Receive and install certificate

Server Configuration

server {

listen 443 ssl http2;

server_name example.com;

ssl_certificate /path/to/fullchain.pem;

ssl_certificate_key /path/to/privkey.pem;

ssl_protocols TLSv1.2 TLSv1.3;

ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:...;

}

HTTP to HTTPS Redirect

server {

listen 80;

server_name example.com;

return 301 https://example.com$request_uri;

}

HTTPS Best Practices

1. Use TLS 1.2 or higher: Disable older protocols (SSL 3.0, TLS 1.0/1.1)

2. Implement HSTS: Force HTTPS via HTTP Strict Transport Security header

3. Use strong ciphers: Prioritize ECDHE and AES-GCM suites

4. Enable OCSP stapling: Faster certificate validation

5. Renew certificates early: Avoid expiration-related outages

6. Update mixed content: Ensure all resources load via HTTPS

7. Monitor certificate expiry: Use automated monitoring tools

Common HTTPS Issues

HTTPS is no longer optional—it's essential for every website regardless of content type, providing security, trust, and SEO benefits that make implementation a fundamental requirement.

Put This Knowledge to Work

Use DomScan's API to check domain availability, health, and more.