Ho un'app desktop che si sincronizza con un database a http://XXX.XXX.XX.XX:5984
. Ho attivato tutta la sicurezza lato server che ho a disposizione e voglio anche impostare l'app desktop per la sincronizzazione tramite SSL https://XXX.XXX.XX.XX:6984
in modo che se un utente ha l'app sul proprio laptop e si sta sincronizzando usando una connessione pubblica, i loro dati sono criptato.
L'ho configurato con un certificato autofirmato sul server e testato sulla riga di comando con quanto segue, ma ottengo questo avviso:
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.
Dato che sono il proprietario del server ed è un ip diretto a una porta. La disattivazione della verifica del certificato ( curl -k https://XXX.XX.XX.XXX:6984
) significa che i miei dati verranno inviati non crittografati?