Skip to content

Server Config File Format

patricklucas edited this page Jan 14, 2011 · 2 revisions

The server config is stored in a json file. By default the file is called config.json. Users are stored with username as key and a Base64-encoded secret as value in an object under the key Sekritz. Here is an example config file:

{
    "Sekritz": {
        "User 1": "BASE64ENCODEDSEKRIT=",
        "User 2": "DIFFERENTSEKRIT==",
        "User 3": "3RDSECRETABCD=="
    }
}
Clone this wiki locally