ssl - Upload a Signed Certificate to Amazon EC2? -


i'm new amazon ec2. trying setup https website, follow offical instruction amazon doc: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https.html

and stuck @ upload signed certificate step

aws iam upload-server-certificate --server-certificate-name <certificate_object_name> \     --certificate-body <public_key_certificate_file> --private-key <privatekey.pem> \     --certificate-chain <certificate_chain_file> 

as instruction, create private key (privatekey.pem) , certificate signing request (csr.pem), in command line request 4 params

  1. certificate_object_name
  2. public_key_certificate_file
  3. private-key --> have one
  4. certificate_chain_file

i don't know 3 remain params, please shed light.

you found answer already:

certificate_object_name -- want identifier certificate public_key_certificate_file -- key certificate issuer provided private-key --> have 1 -- key used generate certificate request provider ... not request certificate_chain_file -- bundle certificate provided issuing authority. optional upload aws. see line in documentation:

"if uploading self-signed certificate , it's not important browsers implicitly accept certificate, can omit --certificate-chain option , upload server certificate , private key"


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -