mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-03-12 20:34:46 +00:00
Compare commits
4 commits
cdc6d87d14
...
853a0ec9ab
Author | SHA1 | Date | |
---|---|---|---|
|
853a0ec9ab | ||
|
7dc6191b0a | ||
|
f65453e50c | ||
|
495bf51ac8 |
2 changed files with 33 additions and 9 deletions
|
@ -156,15 +156,38 @@ class DockerHost {
|
|||
let certPath = path.join(Database.dockerTLSDir, dirName, DockerHost.CertificateFileNameCert);
|
||||
let keyPath = path.join(Database.dockerTLSDir, dirName, DockerHost.CertificateFileNameKey);
|
||||
|
||||
if (dockerType === "tcp" && fs.existsSync(caPath) && fs.existsSync(certPath) && fs.existsSync(keyPath)) {
|
||||
let ca = fs.readFileSync(caPath);
|
||||
let key = fs.readFileSync(keyPath);
|
||||
let cert = fs.readFileSync(certPath);
|
||||
certOptions = {
|
||||
ca,
|
||||
key,
|
||||
cert
|
||||
};
|
||||
let key;
|
||||
let cert;
|
||||
let ca;
|
||||
|
||||
if (dockerType === "tcp") {
|
||||
if (fs.existsSync(keyPath) && fs.existsSync(certPath)) {
|
||||
// Load the key and cert
|
||||
key = fs.readFileSync(keyPath);
|
||||
cert = fs.readFileSync(certPath);
|
||||
|
||||
if (fs.existsSync(caPath)) {
|
||||
// Condition 1: Mutual TLS with self-signed certificate
|
||||
ca = fs.readFileSync(caPath);
|
||||
certOptions = {
|
||||
ca,
|
||||
key,
|
||||
cert
|
||||
};
|
||||
} else {
|
||||
// Condition 2: Mutual TLS with certificate in the standard trust store
|
||||
certOptions = {
|
||||
key,
|
||||
cert
|
||||
};
|
||||
}
|
||||
} else if (fs.existsSync(caPath)) {
|
||||
// Condition 3: TLS using self-signed certificate (without mutual TLS)
|
||||
ca = fs.readFileSync(caPath);
|
||||
certOptions = {
|
||||
ca
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
|
@ -72,6 +72,7 @@ class GoogleChat extends NotificationProvider {
|
|||
|
||||
// construct json data
|
||||
let data = {
|
||||
fallbackText: chatHeader["title"],
|
||||
cardsV2: [
|
||||
{
|
||||
card: {
|
||||
|
|
Loading…
Add table
Reference in a new issue