SquadJS/squad-server/templates/config-template.json

80 lines
1.8 KiB
JSON
Raw Normal View History

{
"server": {
"id": 1,
"host": "xxx.xxx.xxx.xxx",
"queryPort": 27165,
"rconPort": 21114,
"rconPassword": "password",
2020-10-22 12:18:44 -05:00
"rconVerbose": true,
"logReaderMode": "tail",
"logDir": "C:/path/to/squad/log/folder",
"ftpPort": 21,
"ftpUser": "FTP Username",
"ftpPassword": "FTP Password",
2020-11-07 17:43:08 -06:00
"ftpUseListForSize": false,
"adminLists": []
},
"connectors": {
"discord": "Discord Login Token",
2020-10-05 12:52:01 -05:00
"squadlayerpool": {
"type": "buildPoolFromFilter",
"filter": {
"whitelistedLayers": null,
"blacklistedLayers": null,
"whitelistedMaps": null,
"blacklistedMaps": null,
"whitelistedGamemodes": null,
"blacklistedGamemodes": ["Training"],
"flagCountMin": null,
"flagCountMax": null,
"hasCommander": null,
"hasTanks": null,
"hasHelicopters": null
},
"activeLayerFilter": {
"historyResetTime": 18000000,
"layerHistoryTolerance": 8,
"mapHistoryTolerance": 4,
"gamemodeHistoryTolerance": {
"Invasion": 4
},
"gamemodeRepetitiveTolerance": {
"Invasion": 4
},
"playerCountComplianceEnabled": true,
"factionComplianceEnabled": true,
"factionHistoryTolerance": {
"RUS": 4
},
"factionRepetitiveTolerance": {
"RUS": 4
}
}
},
"mysql": {
"host": "host",
"port": 3306,
2020-12-06 15:21:41 -06:00
"username": "squadjs",
"password": "password",
2020-12-06 15:21:41 -06:00
"database": "squadjs",
"dialect": "mysql"
}
},
2020-12-08 15:43:00 -06:00
"plugins": [],
2020-12-08 15:40:26 -06:00
"logger": {
2020-12-08 15:36:34 -06:00
"verboseness": {
"SquadServer": 1,
"LogParser": 1,
"RCON": 1
},
"colors": {
"SquadServer": "yellowBright",
"SquadServerFactory": "yellowBright",
"LogParser": "blueBright",
"RCON": "redBright"
}
2020-12-08 15:43:00 -06:00
}
2020-12-08 15:36:34 -06:00
}