From 24d422b34cf548449f806abf86121609f34693b2 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Mon, 8 Mar 2021 11:24:11 -0800 Subject: [PATCH] Added MariaDB and MySQL to config.json schema. --- meshcentral-config-schema.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index c63236b0..6f62411d 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -12,6 +12,27 @@ "mongoDbName": { "type": "string" }, "mongoDbChangeStream": { "type": "boolean", "default": false }, "mongoDbBulkOperations": { "type": "boolean", "default": false }, + "mariaDB": { + "type": "object", + "description": "Add this section to connect MeshCentral to a MariaDB database instance.", + "properties": { + "host": { "type": "string", "description": "MariaDB hostname" }, + "user": { "type": "string", "description": "MariaDB username" }, + "port": { "type": "number", "description": "MariaDB port number" }, + "password": { "type": "string", "description": "MariaDB password" }, + "connectionLimit": { "type": "number", "description": "MariaDB connection limit" } + } + }, + "mySQL": { + "type": "object", + "description": "Add this section to connect MeshCentral to a MySQL database instance.", + "properties": { + "host": { "type": "string", "description": "MySQL hostname" }, + "port": { "type": "number", "description": "MySQL port number" }, + "user": { "type": "string", "description": "MySQL username" }, + "password": { "type": "string", "description": "MySQL password" } + } + }, "WANonly": { "type": "boolean", "default": false, "description": "When enabled, only MeshCentral WAN features are enabled and agents will connect to the server using a well known DNS name." }, "LANonly": { "type": "boolean", "default": false, "description": "When enabled, only MeshCentral LAN features are enabled and agents will find the server using multicast LAN packets." }, "maintenanceMode": { "type": "boolean", "default": false, "description": "When enabled the server is in maintenance mode, only administrators can login. Use the maintenance command in server console to change." },