From 00b7c778c09adea59d5aea51dd6f3cd2e2eb6984 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Thu, 23 Dec 2021 21:02:41 +0200 Subject: [PATCH] Added configuration skeleton --- config.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..5bd886c --- /dev/null +++ b/config.json @@ -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": { + + } + } + } +}