Home>
I wanted to build a proxy server with HAProxy to run multiple Minecraft servers, but it didn't work.
There seems to be a way to do it with BungeeCord, but I want to do it using a proxy.
What I want to do is to access the server at port 55555 when I access mc.example.com on the Minecraft side.
The port of 25565 is open, and the port of 55555 is not open on either the router side or the server side.
I also executedsystemctl restart haproxy
firmly
OS: CentOS 7.7.1908
frontend minecraft
bind *: 25565
mode tcp
option tcplog
balance roundrobin
use_backend _55555 if {hdr (host) -m sub mc}
backend _55555
tcp-request content accept
server 55555 127.0.0.1:55555
Please tell us if the necessary information is missing.
-
Answer # 1
Related articles
- i want to start a bedrock minecraft server on linux 1804 with gce, but i can't start the server with systemd
- Script to implement http/https proxy server with Python code
- Go variables, functions, socks5 proxy server example
- Example of a simple proxy server port mapping function implemented in Python
- Method for developing SQLite proxy server using Python
- Setting up a proxy server with nginx
- How to set proxy server in Maven
- Guide to setting up a proxy server for http and https using squid
- Deploy Varnish cache proxy server based on Centos7
- flask - 400 bad request: the browser (or proxy) sent a request that this server could not understand
- apache - distribution method from proxy server to multiple servers in the same domain
- javascript - doesn't work after jquery server is up
- javascript - i want to sort the proxy server by domain in the pac file
- vba - i want to access the site via a proxy server with selenium basic + chrome
- php - bin/cake server doesn't work
- i want to link go's echo server and nginx with a reverse proxy (docker)
- Detailed notes on creating proxy jobs in SQL Server Alwayson
Trends
It was solved by doing.