There is more news.
Multiserver operation is possible.
A separate LiveTiming folder must be created for each rF2 Dedicated Server.
The port to be listened to must then be a different one.
Plugin Server 1
Plugin Server 2
And in node Config File index.js
Server 1
Server 2
You must open only the Ports 8080-8081 in your firewall.
Multiserver operation is possible.
A separate LiveTiming folder must be created for each rF2 Dedicated Server.
The port to be listened to must then be a different one.
Plugin Server 1
USE LOCALHOST="1"
DEST IP="127.0.0.1"
DEST PORT="19980"
SEND RESULTS="1"
Plugin Server 2
USE LOCALHOST="1"
DEST IP="127.0.0.1"
DEST PORT="19981"
SEND RESULTS="1"
And in node Config File index.js
Server 1
module.exports = {
HTTP_LISTEN_PORT: 8080, // port to listen for HTTP clients
RF2_LISTEN_PORT: 19980, // port to which the rF2 plugin sends data
RF2_SRC_ADDR: '127.0.0.1', // IP address of rF2 server
IPV4_LOOPBACK: '127.0.0.1', // if loopback IP for some reason is different, change this
RF2_PUBLIC_ADDR: 'your server ip' // public IP of rF2 server for join link
};
Server 2
module.exports = {
HTTP_LISTEN_PORT: 8081, // port to listen for HTTP clients
RF2_LISTEN_PORT: 19981, // port to which the rF2 plugin sends data
RF2_SRC_ADDR: '127.0.0.1', // IP address of rF2 server
IPV4_LOOPBACK: '127.0.0.1', // if loopback IP for some reason is different, change this
RF2_PUBLIC_ADDR: 'your server ip' // public IP of rF2 server for join link
};
You must open only the Ports 8080-8081 in your firewall.