Updated config schema
Noah Zalev committed
Apr 22, 2021 at 20:55 UTC
d93eeb9603f7a9f44e9dcacef94d82a2b04bd175
1 file changed
+4
-2
meshcentral-config-schema.json
+4
-2
@@ -20,7 +20,8 @@
20
"user": { "type": "string", "description": "MariaDB username" },
21
"port": { "type": "number", "description": "MariaDB port number" },
22
"password": { "type": "string", "description": "MariaDB password" },
23
- "connectionLimit": { "type": "number", "description": "MariaDB connection limit" }
23
+ "connectionLimit": { "type": "number", "description": "MariaDB connection limit" },
24
+ "database": { "type": "string", "default": "meshcentral", "description": "Name of MariaDB database used" }
25
}
26
},
27
"mySQL": {
@@ -30,7 +31,8 @@
31
"host": { "type": "string", "description": "MySQL hostname" },
32
"port": { "type": "number", "description": "MySQL port number" },
33
"user": { "type": "string", "description": "MySQL username" },
33
- "password": { "type": "string", "description": "MySQL password" }
34
+ "password": { "type": "string", "description": "MySQL password" },
35
+ "database": { "type": "string", "default": "meshcentral", "description": "Name of MySQL database used" }
36
}
37
},
38
"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." },