Home > Blockchain >  NET::ERR_CERT_COMMON_NAME_INVALID error in AWS
NET::ERR_CERT_COMMON_NAME_INVALID error in AWS

Time:09-12

I made server structure like picture below.

enter image description here

I put same ssl in two different region. But still getting this error. I have no idea to solve this problem. Please help me....

CodePudding user response:

You can't re-use the same certificate on your ALB which you used on cloudfront. If you want SSL on ALB, you need to setup new domain for it, e.g. alb.example.com, get SSL cert for that new domain, and deploy it on ALB:

Client --- (HTTPS example.com) ---> CF (SSL for example.com) ---- (HTTPS alb.example.com) ----> ALB (SSL for alb.example.com)
  • Related