Reputation: 358
I am trying to access my AWS Application Load Balancer(ALB) but I am getting a net::ERR_CERT_COMMON_NAME_INVALID instead.
Current Scenario:
example.com
& *.example.com
.I would be more than happy to provide any further details required to support my query.
Thanks in advance.
Upvotes: 1
Views: 2137
Reputation: 35248
This comes down to one of the following scenarios:
*.example.com
will only cover a single level subdomain such as www.example.com
not secondary levels such as beta.www.example.com
.You should be able to get some more information about the error by running the below.
curl -i -v https://example.com
Upvotes: 4