ssl-certificate

aws EC2 install SSL certificate from Godaddy

。_饼干妹妹 提交于 2020-08-26 13:35:24
问题 Hello I'm trying to install my SSL certificate from GoDaddy, I expended a lot of days on this but I couldn't install it. I modify the ssl.conf and I put this lines: SSLEngine on SSLCertificateFile /etc/httpd/conf/GODADYCERT.crt SSLCertificateKeyFile /etc/httpd/conf/private.key SSLCertificateChainFile /etc/httpd/conf/gd_bundle-xxxx.crt But when I restart httpd service, can't restart. Any can help me? 回答1: Ensure that you have installed mod_ssl and it is running. Upload your certificates on

aws EC2 install SSL certificate from Godaddy

狂风中的少年 提交于 2020-08-26 13:32:25
问题 Hello I'm trying to install my SSL certificate from GoDaddy, I expended a lot of days on this but I couldn't install it. I modify the ssl.conf and I put this lines: SSLEngine on SSLCertificateFile /etc/httpd/conf/GODADYCERT.crt SSLCertificateKeyFile /etc/httpd/conf/private.key SSLCertificateChainFile /etc/httpd/conf/gd_bundle-xxxx.crt But when I restart httpd service, can't restart. Any can help me? 回答1: Ensure that you have installed mod_ssl and it is running. Upload your certificates on

download untrusted certifcate in Chrome (Mac)

房东的猫 提交于 2020-08-24 07:25:40
问题 I have this website which contains an untrusted certificate (self signed). Now I want to download this certificate. But, for example, in Chrome, you only can 'Proceed' or go back (no download option). I'm on a Mac, so I've checked the Keychain access tool but it contains a lot. First of all I don't know if the cert is supposed to be in here, and second, I actually don't know how it looks like. For example, the url is https://example.com:8181/myApp Any suggestions how to find the cert ? UPDATE

How to access a public certificate in a node.js azure function

左心房为你撑大大i 提交于 2020-08-06 05:50:30
问题 I've imported a public certificate to my azure function through My Azure function app service -> Platform Features tab -> SSL -> Public Key Certificates (.cer) Now how do I access this through my azure function? I've tried researching this but the only results I can find are for using a private certificate Currently to get around this I am telling node to ignore the self signed certificate for the endpoint I am integrating with by setting process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; I

How to access a public certificate in a node.js azure function

南笙酒味 提交于 2020-08-06 05:49:09
问题 I've imported a public certificate to my azure function through My Azure function app service -> Platform Features tab -> SSL -> Public Key Certificates (.cer) Now how do I access this through my azure function? I've tried researching this but the only results I can find are for using a private certificate Currently to get around this I am telling node to ignore the self signed certificate for the endpoint I am integrating with by setting process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; I

How to do HTTPS request from Phoenix and ignore the CA error

a 夏天 提交于 2020-08-04 05:09:31
问题 I'm trying to call a dev environment REST service from my phoenix server, but I don't want to whitelist the CA. For the record, I don't even know how to add the CA key to Phoenix's whitelist. How to do https request from phoenix while also ignoring the SSL's CA error? 回答1: Using HTTPoison, you need to pass the :insecure hackney option. HTTPoison.get! url, [], hackney: [:insecure] 来源: https://stackoverflow.com/questions/32767162/how-to-do-https-request-from-phoenix-and-ignore-the-ca-error