From a2b2e7913658687c5799c3d6915ba1fcb4475b8a Mon Sep 17 00:00:00 2001 From: got2bhockey Date: Mon, 4 Jan 2021 18:08:30 -0500 Subject: [PATCH] Update README.md with adminLists example --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 919cc6c..298860e 100644 --- a/README.md +++ b/README.md @@ -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. ---