Updated documentation

Ylian Saint-Hilaire committed Sep 21, 2017 at 11:20 UTC ee92143a18c7e0cf7a7ecc2ab74e275ba8a37a3b
2 files changed +9 -1
package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "meshcentral",
3 - "version": "0.0.8-b",
3 + "version": "0.0.8-c",
4 "keywords": [
5 "Remote Management",
6 "Intel AMT",
readme.txt
+8
@@ -109,6 +109,13 @@ As an alternative to using command line arguments, you can create a ./node-modul
109 "title": "Customer2",
110 "title2": "Other String"
111 }
112 + },
113 + "peers": {
114 + "serverId" : "Server1",
115 + "servers": {
116 + "Server1": { "url": "wss://192.168.1.100:443/" },
117 + "Server2": { "url": "wss://192.168.1.101:443/" }
118 + }
119 }
120 }
121 ```
@@ -125,6 +132,7 @@ For the configuration above, the root domain and two other domains will be acces
132
133 When you setup many domains, the server considers each domain seperatly. Each domain has seperate user accounts, administrators, etc. Within each domain, you can put a "title" and "title2" as strings that will show up at the top of the web site. "userQuota" indicates the default maximum amount of data a user can have in it's "My Files" folder. "meshQuota" is the maximum total size of files in each mesh folder. "newAccounts" indicates if new accounts can be created from the login page, 0 if not allowed, 1 if allowed. Note that if a web site has no accounts, the new account option will be available until an account is created and the first account will be the site administrator.
134
135 +MeshCentral also supports server peering, add the "peers" section with a list of all peers. If you want to do server peering, make sure all servers are configured to use the same database. Also, the "serverId" value is optional. If it's not specified, the computers hostname is used instead.
136
137 Other Notes
138 -----------