Search⌘ K
AI Features

Enabling HTTPS on Our Load Balancer

Discover how to enable HTTPS on your AWS load balancer by creating an HTTPS listener with TLS/SSL encryption, configuring your security group to allow port 443 traffic, and testing secure access to your WordPress blog. This lesson guides you through using AWS CLI commands to secure your site with encryption.

We are very close to enabling HTTPS for our WordPress blog! We're now ready to enable HTTPS on our load balancer. To do so, we need to add a new HTTPS listener that will accept encrypted connections on port 443 and forward requests via HTTP to our WordPress instances on port 80.

Creating an HTTPS listener

Creating an HTTPS ...