Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Tip
See also Configure an own SSL certificate for a existing installation or vhost

Table of Contents

With translate5 3.1.1 PHP must be installed with curl. Curl is needed to talk to several third party services, mainly openID connect, or also the language resource "google machine translation".

...

In a new tab more information about the certificate is shown. Each certificate in the chain gets an own tab in that window. In the first Tab - the server certificate - click on "Save PME (Certificatechain)"

Image Added

Save that file for later reuse with CURL.Image Removed

Code Block
openssl s_client -showcerts -CAfile /path/to/downloadedchainfile.pem -connect DOMAINTOTEST:https 

# or with curl

curl --cacert /path/to/downloadedchainfile.pem -v https://DOMAINTOTEST 

...

Warning

The server must provide valid certificate data, so consider above CAINFO setting only as temporary workaround!


Solution if local CA is completely not update

In this case either update the CA bundle of the operating system (updating ca-certificates package) , or download up-to-date CA bundle on your own, and configure curl to use it.

...