简体   繁体   中英

How do I configure possitiveSSL on embedded yaws?

I bought a possitiveSSL certificate from ComodoSSL

these are the files I was received from them

Root CA Certificate - AddTrustExternalCARoot.crt
Intermediate CA Certificate - COMODORSAAddTrustCA.crt
Intermediate CA Certificate - COMODORSADomainValidationSecureServerCA.crt
Your PositiveSSL Certificate - domain_com.crt

How do I replace these files with the following embedded yaws configuration?

{ssl,[{keyfile, "/home/user/Develop/yaws-2.0.2/etc/yaws/yaws-key.pem"},
          {certfile, "/home/user/Develop/yaws-2.0.2/etc/yaws/yaws-cert.pem"},
          {depth,0},{dhfile,"/home/yser/Develop/yaws-2.0.2/etc/yaws/dhparams.pem"}]},

I have solved this problem by combining the following files into one filename.crt :

Root CA Certificate - AddTrustExternalCARoot.crt
Intermediate CA Certificate - COMODORSAAddTrustCA.crt
Intermediate CA Certificate - COMODORSADomainValidationSecureServerCA.crt
Your PositiveSSL Certificate - domain_com.crt

Then I added the key signature I used to request the ssl certificate into a file.key file.

so the result is something like this:

{port, 443}
{ssl,[{keyfile, "/home/file.key"},
          {certfile, "/home/filename.crt"},
          {depth,0}]}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM