Skip to content

Proxy your local Minecraft server with a public server using your domain. It's not a Bungeecord or a plugin.

License

Notifications You must be signed in to change notification settings

sya-ri/minecraft-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minecraft-proxy

Proxy your local Minecraft server with a public server using your domain. It's not a Bungeecord or a plugin.

Structure

Use frp to connect the local server to the container's port with the public server. Then use mc-router to change the port to connect by domain.

flowchart LR
    subgraph Public server
        subgraph Container
            subgraph frps
                frps-25566[:25566]
                frps-25567[:25567]
            end
            mc-router <-- example.com --> frps-25566
            mc-router <-- sub.example.com --> frps-25567
        end
    end
    subgraph Local server 2
        frps-25567 <---> frpc-2
        minecraft-2[Minecraft server] <--> frpc-2[frpc]
    end
    subgraph Local server 1
        minecraft-1[Minecraft server] <--> frpc-1[frpc]
        frps-25566 <---> frpc-1
    end
    minecraft-client[Minecraft client] <-- $domain:25565 --> mc-router

Usage

Public server

  1. Clone this repository.
  2. Create .env.
  3. Run docker compose up -d.

Each local server

  1. Download from releases.
  2. Extract frpc from a downloaded file.
  3. Create frpc.ini
  4. Run frpc -c frpc.ini.

Example

Structure example

※ The public server address is 203.0.113.0.

Public server

.env
ROUTER_MAPPING=example.com=frp:25566,sub.example.com=frp:25567

frp is the address that means frps container.

Local server 1

frpc.ini
[common]
server_addr = 203.0.113.0
server_port = 7000

[minecraft]
type = tcp
local_port = 25565
remote_port = 25566

Local server 2

frpc.ini
[common]
server_addr = 203.0.113.0
server_port = 7000

[minecraft]
type = tcp
local_port = 25565
remote_port = 25567

Environment value

FRP_VERSION

Default: 0.52.3

frps version to use.

FRP_ARGS

Default: (empty)

frps command options. For example, you can set a token.

FRP_PORT

Default: 7000

ROUTER_MAPPING

Require

Mapping of address and port. For example: example.com=frp:25565

About

Proxy your local Minecraft server with a public server using your domain. It's not a Bungeecord or a plugin.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project