Hello!
I am currently hosting a Minecraft server on my home network and was wondering if it would be possible to hide my home IP address by using HAProxy. My setup would be as follows:
Player → Remote VPS (with HAProxy) → Home local server.
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user root
group root
daemon
maxconn 100
frontend minecraft
mode tcp
bind 0.0.0.0:25565 transparent
default_backend bungeecord_server
backend bungeecord_server
server bungeecord HOME_IP:25565
Would this properly hide my home IP address or would I have to change something (like using transparent
on the bind line)?
I appreciate any and all help. Thank you in advance!
1 post - 1 participant