Digital Certificate to receive HTTPS requests via AJAX

1

Does anyone know what kind of digital certificate is needed to use mormot to receive AJAX requests via HTTPS?

Also, how to install it on windows?

If you have an example (preferably using Delphi Tokyo Mormot ) thank you.

    
asked by anonymous 11.08.2017 / 21:58

1 answer

0

You need an application certificate or server certificate first.

Then, to install, you only need to indicate in the SSL / TLS configuration file of your application server that you are using HTTPS, it is usually necessary to redirect HTTP requests from port 80 to HTTPS on port 443; in addition, you must indicate the path where you stored the private key of your certificate, indicate the path where you stored the certificate on the server, and the #

I do not have a clue how to do it in Delphi, only in Apache and JBOSS, but mORMot documentation has something about it .

  

"What I hear, I forget.What I see, I remember.What I do, I understand." Confucius

Find out more about this.

Remember that the digital certificate protects against attacks of the type man-in-the-middle , however, does not encrypt data, only ensures authenticity, integrity and legal validity. See what he says at Provisional Measure 2200-2 / 2001 .

    
11.08.2017 / 22:24