From 916003e0852e6ed069c01c3c3e1ff91c14cac863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Mon, 27 Apr 2020 13:38:53 +0200 Subject: [PATCH] clarify more that ip change is mandatory Move to documentation IP range --- server/config/config.example.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/server/config/config.example.js b/server/config/config.example.js index 22f3dcb..966c1bc 100644 --- a/server/config/config.example.js +++ b/server/config/config.example.js @@ -325,11 +325,12 @@ module.exports = { listenIps : [ - // change ip to your servers IP address! - { ip: '0.0.0.0', announcedIp: null } + // change 192.0.2.1 IPv4 to your server's IPv4 address!! + { ip: '192.0.2.1', announcedIp: null } // Can have multiple listening interfaces - // { ip: '::/0', announcedIp: null } + // change 2001:DB8::1 IPv6 to your server's IPv6 address!! + // { ip: '2001:DB8::1', announcedIp: null } ], initialAvailableOutgoingBitrate : 1000000, minimumAvailableOutgoingBitrate : 600000,