ssl

Still hitting certificate error after configure mobileFirst keystore

感情迁移 提交于 2021-01-05 07:29:28
问题 Good day, I have a MobileFirst Server, that will call to my bankend appliction (ip address: 10.8.1.46). Its work currently as I am connected to http backend application. I would like to change it to connect to https . The following is the step I have done: Log in to bakend server, run the following command to generate the keystore: keytool -genkey -alias backend -keyalg RSA -validity 365 -keystore backend.jks -storetype JKS It prompt to key in keystore password, first name and last name and

Still hitting certificate error after configure mobileFirst keystore

耗尽温柔 提交于 2021-01-05 07:26:46
问题 Good day, I have a MobileFirst Server, that will call to my bankend appliction (ip address: 10.8.1.46). Its work currently as I am connected to http backend application. I would like to change it to connect to https . The following is the step I have done: Log in to bakend server, run the following command to generate the keystore: keytool -genkey -alias backend -keyalg RSA -validity 365 -keystore backend.jks -storetype JKS It prompt to key in keystore password, first name and last name and

Tomcat/TomEE SSL config with Cloudflare

拈花ヽ惹草 提交于 2021-01-05 07:04:45
问题 I have been having problems with the correct way to configure tomee with cloudflare provided SSL. First time doing this, so here is the situation: 1) First i create the keystore file: keytool -keysize 2048 -genkey -alias tomee -keyalg RSA -keystore tomee.keystore 2) Then i import the generated keystore: keytool -importkeystore -srckeystore tomee.keystore -destkeystore tomee.keystore -deststoretype pkcs12 3) After importing, I create the CSR file for issuing a certificate request: keytool

Request to API fails, reason: unable to verify the first certificate (and UNABLE_TO_VERIFY_LEAF_SIGNATURE)

自作多情 提交于 2021-01-05 06:42:10
问题 We have an Apollo Server which is calling an external API (which translates the REST API into GraphQL). Up until several days ago this worked fine, using cross-fetch to call the API. On Friday we started getting the following error (below). I've done some searching and it seems to have to do with certificates (see Error: unable to verify the first certificate in nodejs for example). Following the answer to that question, I tried using https://www.npmjs.com/package/ssl-root-cas and putting

Request to API fails, reason: unable to verify the first certificate (and UNABLE_TO_VERIFY_LEAF_SIGNATURE)

ⅰ亾dé卋堺 提交于 2021-01-05 06:41:56
问题 We have an Apollo Server which is calling an external API (which translates the REST API into GraphQL). Up until several days ago this worked fine, using cross-fetch to call the API. On Friday we started getting the following error (below). I've done some searching and it seems to have to do with certificates (see Error: unable to verify the first certificate in nodejs for example). Following the answer to that question, I tried using https://www.npmjs.com/package/ssl-root-cas and putting

Request to API fails, reason: unable to verify the first certificate (and UNABLE_TO_VERIFY_LEAF_SIGNATURE)

我怕爱的太早我们不能终老 提交于 2021-01-05 06:39:24
问题 We have an Apollo Server which is calling an external API (which translates the REST API into GraphQL). Up until several days ago this worked fine, using cross-fetch to call the API. On Friday we started getting the following error (below). I've done some searching and it seems to have to do with certificates (see Error: unable to verify the first certificate in nodejs for example). Following the answer to that question, I tried using https://www.npmjs.com/package/ssl-root-cas and putting

Request to API fails, reason: unable to verify the first certificate (and UNABLE_TO_VERIFY_LEAF_SIGNATURE)

给你一囗甜甜゛ 提交于 2021-01-05 06:39:07
问题 We have an Apollo Server which is calling an external API (which translates the REST API into GraphQL). Up until several days ago this worked fine, using cross-fetch to call the API. On Friday we started getting the following error (below). I've done some searching and it seems to have to do with certificates (see Error: unable to verify the first certificate in nodejs for example). Following the answer to that question, I tried using https://www.npmjs.com/package/ssl-root-cas and putting

How to generate HTTPS proxy certificate?

a 夏天 提交于 2021-01-04 09:02:57
问题 I am currently writing an HTTPS proxy using OpenSSL, but I cannot get Firefox or IE to accept my self-signed certificate as a CA. I have added the certificate to "Trusted Root Certification Authorities" in IE and "Authorities" in Firefox. I am testing on https://ssltest11.bbtest.net/ with the certificate found at Geotrust, but the same applies for other sites as far as I've seen. IE gives me the error: The security certificate presented by this website was not issued by a trusted certificate

htacces 2 variables issues

南笙酒味 提交于 2021-01-04 05:41:09
问题 BEFORE I installed SSL things were working perfectly!! Here is the code I have in my root webserver .htaccess file: Options +MultiViews RewriteEngine On RewriteCond %{HTTP_HOST} andrea\.com [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://andrea.com/$1 [R,L] RewriteCond %{DOCUMENT_ROOT}/$1.php -f RewriteRule (.*) $1.php [L] It works and it does exactly what I want it to do. So if I go to for example: www.andrea.com/account it accesses "www.andrea.com/account.php". Which is what I

htacces 2 variables issues

99封情书 提交于 2021-01-04 05:40:55
问题 BEFORE I installed SSL things were working perfectly!! Here is the code I have in my root webserver .htaccess file: Options +MultiViews RewriteEngine On RewriteCond %{HTTP_HOST} andrea\.com [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://andrea.com/$1 [R,L] RewriteCond %{DOCUMENT_ROOT}/$1.php -f RewriteRule (.*) $1.php [L] It works and it does exactly what I want it to do. So if I go to for example: www.andrea.com/account it accesses "www.andrea.com/account.php". Which is what I