We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87588f7 commit 0595a3dCopy full SHA for 0595a3d
1 file changed
src/lib/apiClient.ts
@@ -78,7 +78,6 @@ function getAxiosAgent(): AxiosRequestConfig["httpsAgent"] | undefined {
78
host: proxyHost,
79
port: Number(proxyPort),
80
ca,
81
- rejectUnauthorized: false, // Set to true if you want strict SSL
82
});
83
} else {
84
// Proxy only
@@ -88,7 +87,6 @@ function getAxiosAgent(): AxiosRequestConfig["httpsAgent"] | undefined {
88
87
// CA only
89
return new https.Agent({
90
ca: fs.readFileSync(caCertPath),
91
- rejectUnauthorized: false, // Set to true for strict SSL
92
93
}
94
// Default agent (no proxy, no CA)
0 commit comments