feat: download clients skip tls verify option (#181)

This commit is contained in:
Ludvig Lundgren 2022-03-17 20:57:27 +01:00 committed by GitHub
parent 8bf43dc1e0
commit bb9e51f9d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 166 additions and 150 deletions

View file

@ -33,7 +33,8 @@ interface DownloadClient {
enabled: boolean;
host: string;
port: number;
ssl: boolean;
tls: boolean;
tls_skip_verify: boolean;
username: string;
password: string;
settings?: DownloadClientSettings;