This commit is contained in:
yhirose 2024-09-08 09:26:19 -04:00
parent 3d6e315a4c
commit a79c56d06b
2 changed files with 65 additions and 16 deletions

View file

@ -77,6 +77,9 @@ cli.set_ca_cert_path("./ca-bundle.crt");
// Disable cert verification
cli.enable_server_certificate_verification(false);
// Disable host verification
cli.enable_server_host_verification(false);
```
> [!NOTE]