mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 19:11:51 +00:00
Merge pull request #4105 from silversword411/master
Syncing sample-config-advanced.json with meshcentral-config-schema.json
This commit is contained in:
commit
70554713da
2 changed files with 24 additions and 10 deletions
|
@ -57,7 +57,6 @@ theme:
|
||||||
- navigation.expand
|
- navigation.expand
|
||||||
- navigation.top
|
- navigation.top
|
||||||
- navigation.instant
|
- navigation.instant
|
||||||
- toc.integrate
|
|
||||||
extra_css:
|
extra_css:
|
||||||
- stylesheets/extra.css
|
- stylesheets/extra.css
|
||||||
extra:
|
extra:
|
||||||
|
@ -84,7 +83,7 @@ markdown_extensions:
|
||||||
- pymdownx.mark
|
- pymdownx.mark
|
||||||
- pymdownx.smartsymbols
|
- pymdownx.smartsymbols
|
||||||
- codehilite:
|
- codehilite:
|
||||||
guess_lang: false
|
guess_lang: true
|
||||||
- toc:
|
- toc:
|
||||||
permalink: true
|
permalink: true
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
|
|
|
@ -6,11 +6,14 @@
|
||||||
"_mongoDb": "mongodb://127.0.0.1:27017",
|
"_mongoDb": "mongodb://127.0.0.1:27017",
|
||||||
"_mongoDbName": "meshcentral",
|
"_mongoDbName": "meshcentral",
|
||||||
"_mongoDbChangeStream": true,
|
"_mongoDbChangeStream": true,
|
||||||
|
"_mongoDbBulkOperations": true,
|
||||||
"_WANonly": true,
|
"_WANonly": true,
|
||||||
"_LANonly": true,
|
"_LANonly": true,
|
||||||
|
"_maintenanceMode": true,
|
||||||
|
"_certificatePrivateKeyPassword": [ "password1", "password2" ],
|
||||||
|
"_sessionTime": 60,
|
||||||
"_sessionKey": "MyReallySecretPassword1",
|
"_sessionKey": "MyReallySecretPassword1",
|
||||||
"_sessionSameSite": "strict",
|
"_sessionSameSite": "strict",
|
||||||
"_certificatePrivateKeyPassword": [ "password1", "password2" ],
|
|
||||||
"_dbEncryptKey": "MyReallySecretPassword2",
|
"_dbEncryptKey": "MyReallySecretPassword2",
|
||||||
"_dbRecordsEncryptKey": "MyReallySecretPassword",
|
"_dbRecordsEncryptKey": "MyReallySecretPassword",
|
||||||
"_dbRecordsDecryptKey": "MyReallySecretPassword",
|
"_dbRecordsDecryptKey": "MyReallySecretPassword",
|
||||||
|
@ -30,24 +33,38 @@
|
||||||
"_agentPortBind": "127.0.0.1",
|
"_agentPortBind": "127.0.0.1",
|
||||||
"_agentAliasPort": 1234,
|
"_agentAliasPort": 1234,
|
||||||
"_agentAliasDNS": "agents.myserver.mydomain.com",
|
"_agentAliasDNS": "agents.myserver.mydomain.com",
|
||||||
"_agentPortTls": true,
|
"_agentPortTls": false,
|
||||||
|
"_agentLogDump": true,
|
||||||
|
"_agentCoreDump": true,
|
||||||
|
"_agentCoreDumpUsers": "user1,user2",
|
||||||
|
"_agentSignLock": true,
|
||||||
|
"_ignoreAgentHashCheck": true,
|
||||||
"_exactPorts": true,
|
"_exactPorts": true,
|
||||||
"_allowLoginToken": true,
|
"_allowLoginToken": true,
|
||||||
|
"_StrictTransportSecurity": true,
|
||||||
"_allowFraming": true,
|
"_allowFraming": true,
|
||||||
"_cookieIpCheck": false,
|
"_cookieIpCheck": false,
|
||||||
"_cookieEncoding": "hex",
|
"_cookieEncoding": "hex",
|
||||||
"_compression": true,
|
|
||||||
"_wscompression": false,
|
|
||||||
"_agentwscompression": true,
|
|
||||||
"_agentsInRam": false,
|
|
||||||
"_webRTC": false,
|
"_webRTC": false,
|
||||||
"_nice404": false,
|
"_nice404": false,
|
||||||
"_selfUpdate": true,
|
"_selfUpdate": true,
|
||||||
|
"_cleanNpmCacheOnUpdate": true,
|
||||||
"_browserPing": 60,
|
"_browserPing": 60,
|
||||||
"_browserPong": 60,
|
"_browserPong": 60,
|
||||||
|
"_agentsInRam": false,
|
||||||
"_agentPing": 60,
|
"_agentPing": 60,
|
||||||
"_agentPong": 60,
|
"_agentPong": 60,
|
||||||
|
"_orphanAgentUser": "admin",
|
||||||
"_agentIdleTimeout": 150,
|
"_agentIdleTimeout": 150,
|
||||||
|
"_webPageLengthRandomization": false,
|
||||||
|
"_compression": true,
|
||||||
|
"_wsCompression": false,
|
||||||
|
"_agentWsCompression": true,
|
||||||
|
"_noAgentUpdate": 1,
|
||||||
|
"_agentUpdateSystem": 1,
|
||||||
|
"_temporaryAgentUpdate": false,
|
||||||
|
"_amtScanner": false,
|
||||||
|
"_meshScanner": false,
|
||||||
"_meshErrorLogPath": "c:\\tmp",
|
"_meshErrorLogPath": "c:\\tmp",
|
||||||
"_npmPath": "c:\\npm.exe",
|
"_npmPath": "c:\\npm.exe",
|
||||||
"_npmProxy": "http://1.2.3.4:80",
|
"_npmProxy": "http://1.2.3.4:80",
|
||||||
|
@ -59,7 +76,6 @@
|
||||||
"_userBlockedIP": "127.0.0.1,::1,192.168.0.100",
|
"_userBlockedIP": "127.0.0.1,::1,192.168.0.100",
|
||||||
"_agentAllowedIP": "192.168.0.100/24",
|
"_agentAllowedIP": "192.168.0.100/24",
|
||||||
"_agentBlockedIP": "127.0.0.1,::1",
|
"_agentBlockedIP": "127.0.0.1,::1",
|
||||||
"_agentSignLock": true,
|
|
||||||
"_authLog": "c:\\temp\\auth.log",
|
"_authLog": "c:\\temp\\auth.log",
|
||||||
"_InterUserMessaging": [ "user//admin" ],
|
"_InterUserMessaging": [ "user//admin" ],
|
||||||
"_manageAllDeviceGroups": [ "user//admin" ],
|
"_manageAllDeviceGroups": [ "user//admin" ],
|
||||||
|
@ -272,7 +288,6 @@
|
||||||
"_userBlockedIP": "127.0.0.1,::1,192.168.0.100",
|
"_userBlockedIP": "127.0.0.1,::1,192.168.0.100",
|
||||||
"_agentAllowedIP": "192.168.0.100/24",
|
"_agentAllowedIP": "192.168.0.100/24",
|
||||||
"_agentBlockedIP": "127.0.0.1,::1",
|
"_agentBlockedIP": "127.0.0.1,::1",
|
||||||
"_orphanAgentUser": "admin",
|
|
||||||
"___userSessionIdleTimeout__": "Number of user idle minutes before auto-disconnect",
|
"___userSessionIdleTimeout__": "Number of user idle minutes before auto-disconnect",
|
||||||
"_userSessionIdleTimeout": 30,
|
"_userSessionIdleTimeout": 30,
|
||||||
"userConsentFlags": {
|
"userConsentFlags": {
|
||||||
|
|
Loading…
Reference in a new issue