Update README.md with adminLists example

This commit is contained in:
got2bhockey 2021-01-04 18:08:30 -05:00 committed by GitHub
parent cb5088d88a
commit a2b2e79136
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,16 @@ The config file needs to be valid JSON syntax. If an error is thrown saying the
"password": "FTP Password",
"useListForSize": false
},
"adminLists": []
"adminLists": [
{
"type": "local",
"source": "C:/Users/Administrator/Desktop/Servers/sq_arty_party/SquadGame/ServerConfig/Admins.cfg",
},
{
"type": "remote",
"source": "http://yourWebsite.com/Server1/Admins.cfg",
}
]
},
```
* `id` - An integer ID to uniquely identify the server.
@ -80,7 +89,7 @@ The config file needs to be valid JSON syntax. If an error is thrown saying the
* `ftp:port` - The FTP port of the server. Only required for `ftp` `logReaderMode`.
* `ftp:user` - The FTP user of the server. Only required for `ftp` `logReaderMode`.
* `ftp:password` - The FTP password of the server. Only required for `ftp` `logReaderMode`.
* `adminLists` - Sources for identifying an admins on the server.
* `adminLists` - Sources for identifying an admins on the server, either remote or local.
---
</details>