A Minecraft reverse proxy server with server address rewrite.
Supports Minecraft servers and clients with version 12w04a and later (basically means release 1.2.1 and later).
Minecraft versions before 12w04a are NOT SUPPORTED!
- Support reverse proxy for Minecraft servers by server address in the handshake packet which the client sends.
- Support rewrite server address and server port to camouflage a connection which uses an official server address (e.g., pretend to be a normal connection to Hypixel, avoiding their server address check).
- Support IP forwarding using HAProxy's Proxy Protocol (but it refuses any incoming connection using this protocol).
- Provide optional bounded operational metrics and rate-limited resolver-helper state events through the existing log.
- Linux
libresolv.so.2(usually pre-installed. On debian-like systems, contained in packagelibc6)libcjson.so.1(on Debian-like systems, contained in packagelibcjson1)libsystemd.so.0(on Debian-like systems, contained in packagelibsystemd0)
Due to Minecraft handshake restrictions, this server supports:
- Game relay on server & client with version 12w04a and later, except version 12w17a, 13w41a and 13w41b.
- MOTD relay or MOTD status notice on server and client with version 1.6.1 and later, except version 13w41a and 13w41b.
CMakeLists.txtCMake configuration for compiling.docFolder of documents.doc/informationInformational documents.doc/information/loglevel.infoDefinitions of log levels.doc/information/metrics.mdOperational metrics configuration, schema and consumer guidance.doc/information/versions.jsonVersion manifest.doc/configurationConfiguration examples.doc/configuration/logrotateConfiguration used by logrotate.doc/configuration/mcrelayConfigurations read by mcrelay itself.doc/configuration/systemdConfiguration used by systemd, when using mcrelay as a service.srcFolder of source codes.
See the systemd configuration notes for compatibility and synchronous reload modes.
Before compiling, you need to install the cJSON and systemd development files at first.
For example, you can install them on Debian-like systems by apt install libcjson-dev libsystemd-dev.
Then you can use CMake to compile it by cmake -B build && cmake --build build --parallel "$(nproc)", the executable file is build/mcrelay.
See the build and test guide for all project switches, build types, compiler/linker flags, cross-compiling, advanced capacity/deadline overrides and Debian packaging options. For example, -DCMAKE_C_COMPILER=clang selects another compiler, and -DEXEC_SUFFIX=_custom names the executable mcrelay_custom without changing its version.
Run the following commands from the repository root:
cmake -S . -B build-debug -DCMAKE_BUILD_TYPE=Debug -DDEBUG_MODE=ON -DBUILD_TESTING=ON
cmake --build build-debug --parallel "$(nproc)"The executable is build-debug/mcrelay. Debug selects compiler debugging flags; the separate DEBUG_MODE=ON switch allows blocking FIFO configuration input during dumpconfig, startup and reload, and adds -debug only to mcrelay version. The help banner is unchanged. FIFO input can stall configuration loading if its writer is absent or does not close its output; icon input still requires a regular file.
The marker follows DEBUG_MODE, not the build type. Neither setting automatically enables sanitizers, verbose logging or runtime test hooks in mcrelay. See the detailed debug effects and Testing.
For production, use a Release build with FIFO configuration input disabled:
cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release -DDEBUG_MODE=OFF -DBUILD_TESTING=OFF -DUBSAN_TEST=OFF
cmake --build build-release --parallel "$(nproc)"By default, mcrelay starts two resolver helper processes, and each helper performs at most one blocking DNS lookup at a time. Configured destinations are normally prewarmed before mcrelay reports readiness, but a large startup or reload configuration, or a burst of distinct uncached names, can contend for the two helpers and each connection's independent default 10-second route-wait deadline.
The helper count is a compile-time limit rather than a runtime configuration option. Deployments that need more parallel DNS lookups must rebuild with a larger RESOLVER_SUPERVISOR_HELPER_COUNT, for example:
cmake -S . -B build-capacity -DCMAKE_BUILD_TYPE=Release -DDEBUG_MODE=OFF -DBUILD_TESTING=OFF \
-DCMAKE_C_FLAGS="-DRESOLVER_SUPERVISOR_HELPER_COUNT=4"
cmake --build build-capacity --parallel "$(nproc)"See advanced compile-time overrides for related limits, validation requirements and test-target interactions.
BUILD_TESTING defaults to ON and builds separate test runners/daemons; it does not add their hooks or reduced limits to mcrelay. To build and run the regular suite:
cmake -S . -B build-tests -DCMAKE_BUILD_TYPE=Release -DDEBUG_MODE=OFF -DBUILD_TESTING=ON -DUBSAN_TEST=OFF
cmake --build build-tests --parallel "$(nproc)"
ctest --test-dir build-tests --output-on-failure -j4UBSAN_TEST defaults to OFF; enabling it with GCC or Clang adds sanitized copies of selected module tests, not a sanitized mcrelay. Global sanitizer flags are needed to instrument every target. See testing configurations for the full commands, target isolation, test selection and native Linux verification requirements. Always run CTest against the corresponding build directory, not the repository root.
mcrelay dumpconfig [-c <config_file> | --config <config_file>] mcrelay run [-c <config_file> | --config <config_file>] mcrelay version mcrelay help [<command>]
The default configuration file is /etc/mcrelay/config.json.
Use mcrelay dumpconfig to parse a configuration file and display its parsed values without starting a server instance.
The program runs in the foreground. Use a service manager such as systemd when it should run as a background service.
Multiple instances can run with separate configuration files as long as their listening addresses do not conflict.
See doc/configuration/mcrelay/config.jsonc for instructions.
Aggregate operational metrics are disabled by default. Set metrics.interval to an integer from 300 to 86400 seconds and keep log.level at 2 or higher to emit them through the configured log. For example:
{
"metrics": {
"interval": 300
}
}The output is a fixed 48-line schema-1 snapshot interleaved with ordinary access-log records. See the operational metrics guide before writing a consumer or alert: it defines batch grouping, line validation, lifecycle records, histogram units and important limits on what the signals mean.
If you are using an SRV record to provide your service, you should follow the instructions below.
Otherwise, your users will see a message about using an incorrect address to connect.
For example, your SRV record should be like this:
_minecraft._tcp.srvrecord.example.com. => PRIORITY WEIGHT PORT host.example.com
If you provide srvrecord.example.com to your user, you should set your virtual hostname in the configuration file as follows:
- For most Minecraft versions, use
host.example.com. - For Minecraft versions from 21w20a to 1.17, use
srvrecord.example.com.
For compatibility, it's recommended to add both of them to your configuration.
You can provide the real client address and port through HAProxy's Proxy Protocol by this feature.
It's compatible with any server which supports this protocol (e.g. Bungeecord).
To use this feature correctly, turn on the proxy_protocol in the config.yml (false to true).