Got the instruction from here http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/US_UpdatingLoadBalancerSSL.html
But in summary
- Go to https://console.aws.amazon.com/ec2/
- Navigate to “Load Balancers”
- Select one load balancer from the list
- Go the to the “Listeners” tab
- Click on “Change” under “SSL Certificate”
- This popup will pop
- Paste in your certificates
- Private key should be an RSA private key in PEM format
- Make sure the private key file doesnt contain the CSR. It should only have the private key contents
To convert run this against your private key
“openssl rsa -in server.key -out server.key.rsa”
- Get the chain certificate from https://knowledge.rapidssl.com/library/VERISIGN/ALL_OTHER/RapidSSL%20Intermediate/RapidSSL_CA_bundle.pem
- And paste it in
- Finally paste the public certificate that again should be in PEM format
0 Comments