Installation
Here, it is explained step by step how you can install Wale Cloud.
You can use the following command or refer to other documentation to install HAProxy on your server.
sudo apt install haproxysudo apt install haproxy global
log /dev/log local0
log /dev/log local1 notice
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
daemon
defaults
log global
mode tcp
option tcplog
option forwardfor header X-Real-IP
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
frontend minecraft_front
bind *:25565
mode tcp
default_backend minecraft_servers
backend minecraft_servers
mode tcp
balance roundrobinAfter installing the HAProxy service, you can proceed with the installation of the master.
Last updated