This commit is contained in:
Benjamin Toby 2024-01-18 16:55:07 +01:00
parent 05ba95342c
commit 90cc67992b
3 changed files with 4 additions and 3 deletions

View File

@ -18,6 +18,7 @@
//////////////////////////////////////// ////////////////////////////////////////
//////////////////////////////////////// ////////////////////////////////////////
const fs = require("fs");
const mysql = require("mysql"); const mysql = require("mysql");
const path = require("path"); const path = require("path");
@ -34,7 +35,7 @@ const connection = mysql.createConnection({
: undefined, : undefined,
timeout: 5000, timeout: 5000,
ssl: { ssl: {
ca: `${SSL_PATH}/ca-cert.pem`, ca: fs.readFileSync(`${SSL_PATH}/ca-cert.pem`),
}, },
// ssl: { // ssl: {
// ca: (() => { // ca: (() => {

View File

@ -16,7 +16,7 @@ const connection = mysql.createConnection({
: undefined, : undefined,
timeout: 5000, timeout: 5000,
ssl: { ssl: {
ca: `${SSL_PATH}/ca-cert.pem`, ca: fs.readFileSync(`${SSL_PATH}/ca-cert.pem`),
}, },
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "datasquirel", "name": "datasquirel",
"version": "1.9.9", "version": "2.0.0",
"description": "Cloud-based SQL data management tool", "description": "Cloud-based SQL data management tool",
"main": "index.js", "main": "index.js",
"bin": { "bin": {