fixed placing

This commit is contained in:
werewolfboy13 2021-01-08 09:38:22 -06:00
parent 88975c3b4d
commit 59f93c6e67
2 changed files with 18 additions and 34 deletions

View File

@ -67,14 +67,17 @@ The config file needs to be valid JSON syntax. If an error is thrown saying the
"password": "FTP Password",
"useListForSize": false
},
"adminLists": [
{
"type": "",
"source": ""
}
"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.
* `host` - The IP of the server.
@ -87,17 +90,6 @@ The config file needs to be valid JSON syntax. If an error is thrown saying the
* `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, either remote or local.
An example:
"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",
}
]
---
</details>

View File

@ -67,11 +67,15 @@ The config file needs to be valid JSON syntax. If an error is thrown saying the
"password": "FTP Password",
"useListForSize": false
},
"adminLists": [
{
"type": "",
"source": ""
}
"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",
}
]
},
```
@ -86,18 +90,6 @@ The config file needs to be valid JSON syntax. If an error is thrown saying the
* `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, either remote or local.
An example:
"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",
}
]
---
</details>