Skip to content

Disable SSL Verification

KY edited this page May 19, 2018 · 1 revision

To disable the SSL verification, set in the "Generator" section "VerifySsl" to false

.json

{
    "Generator": {
        "Connection": "...",
        "VerifySsl": false
    },
    ...
}

.config or .xml

<?xml version="1.0" encoding="utf-8" ?>
<Configuration>
  <Generator>
    <Connection>...</Connection>
    <VerifySsl>false</VerifySsl>
  </Generator>
  ...
</Configuration>
Clone this wiki locally