1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-12 19:11:51 +00:00

Updated config schema

This commit is contained in:
Noah Zalev 2021-04-22 20:55:46 -04:00
parent 4ca9c391a2
commit d93eeb9603

View file

@ -20,7 +20,8 @@
"user": { "type": "string", "description": "MariaDB username" }, "user": { "type": "string", "description": "MariaDB username" },
"port": { "type": "number", "description": "MariaDB port number" }, "port": { "type": "number", "description": "MariaDB port number" },
"password": { "type": "string", "description": "MariaDB password" }, "password": { "type": "string", "description": "MariaDB password" },
"connectionLimit": { "type": "number", "description": "MariaDB connection limit" } "connectionLimit": { "type": "number", "description": "MariaDB connection limit" },
"database": { "type": "string", "default": "meshcentral", "description": "Name of MariaDB database used" }
} }
}, },
"mySQL": { "mySQL": {
@ -30,7 +31,8 @@
"host": { "type": "string", "description": "MySQL hostname" }, "host": { "type": "string", "description": "MySQL hostname" },
"port": { "type": "number", "description": "MySQL port number" }, "port": { "type": "number", "description": "MySQL port number" },
"user": { "type": "string", "description": "MySQL username" }, "user": { "type": "string", "description": "MySQL username" },
"password": { "type": "string", "description": "MySQL password" } "password": { "type": "string", "description": "MySQL password" },
"database": { "type": "string", "default": "meshcentral", "description": "Name of MySQL database used" }
} }
}, },
"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." }, "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." },