feat: allow insecure connections in cdnfly, goedge, powerdns

This commit is contained in:
Fu Diwei
2025-05-09 16:35:58 +08:00
parent 5abdb577fb
commit 26359b9d16
25 changed files with 147 additions and 86 deletions

View File

@@ -126,6 +126,7 @@ export type AccessConfigForCdnfly = {
apiUrl: string;
apiKey: string;
apiSecret: string;
allowInsecureConnections?: boolean;
};
export type AccessConfigForCloudflare = {
@@ -199,6 +200,7 @@ export type AccessConfigForGoEdge = {
apiUrl: string;
accessKeyId: string;
accessKey: string;
allowInsecureConnections?: boolean;
};
export type AccessConfigForGoogleTrustServices = {
@@ -257,6 +259,7 @@ export type AccessConfigForPorkbun = {
export type AccessConfigForPowerDNS = {
apiUrl: string;
apiKey: string;
allowInsecureConnections?: boolean;
};
export type AccessConfigForQiniu = {