Added configuration skeleton

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 21:02:41 +02:00
parent e52642bae3
commit 00b7c778c0
1 changed files with 46 additions and 0 deletions

46
config.json Normal file
View File

@ -0,0 +1,46 @@
{
"network": {
"listeners": {
"ipv4": {
"address": "127.0.0.1",
"port": 2222
},
"ipv6": {
"address": "::1",
"port": 2223
}
},
"info": {
"networkName" : "my custom network",
"motd" : "This is my server, hello",
"motdFile" : "./motd"
}
},
"accounting": {
"storageDir": "./accounting"
},
"links": {
"link1": {
"incoming": {
},
"outgoing": {
},
"auth": {
}
},
"link2": {
"incoming": {
},
"outgoing": {
},
"auth": {
}
}
}
}