Added a config to allow for insecure certificates, disabled by default.
I had to use #[serde(default)] on the field, so that the serde parser didn't complain and crash when reading an older config, and instead, just puts false. Don't know if there is some other special way you prefer to do config migrations.
Closes https://github.com/Julien-cpsn/ATAC/issues/98
Added a config to allow for insecure certificates, disabled by default.
I had to use #[serde(default)] on the field, so that the serde parser didn't complain and crash when reading an older config, and instead, just puts false. Don't know if there is some other special way you prefer to do config migrations.