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
- certificate_object_name
- public_key_certificate_file
- private-key --> have one
- 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
Post a Comment