Tengo una aplicación de escritorio que se sincroniza con una base de datos en http://XXX.XXX.XX.XX:5984
. He habilitado toda la seguridad del lado del servidor que tengo disponible y también quiero configurar la aplicación de escritorio para que se sincronice a través de SSL https://XXX.XXX.XX.XX:6984
, de modo que si un usuario tiene la aplicación en su computadora portátil y se sincroniza mediante una conexión pública, sus datos están encriptado.
Lo configuré con un certificado autofirmado en el servidor y lo probé en la línea de comandos con lo siguiente, pero recibo este aviso:
curl https://XXX.XX.XX.XXX:6984
More details here: http://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
Ya que soy el propietario del servidor y es una dirección IP directa a un puerto. ¿Al desactivar la verificación del certificado ( curl -k https://XXX.XX.XX.XXX:6984
), mis datos se enviarán sin cifrar?