GameCP Logo
探索立即部署
GameCP Logo
GameCP

次世代遊戲伺服器管理平台。專為性能、安全性和易用性打造。

產品

  • 功能
  • 整合
  • 應用商店
  • 定價
  • 自訂開發
  • 面板對比

資源

  • 文檔
  • API 參考
  • 推薦計畫
  • 支持
  • 系統狀態

公司

  • 關於我們
  • 聯絡我們

© 2026 GameCP。版權所有。

隱私政策服務條款
Minecraft - Velocity gameplay

Host a Minecraft - Velocity Dedicated Server

Velocity is a high-performance Minecraft proxy server designed to connect multiple backend servers into a seamless network. Known for its modern architecture, strong security features, and excellent scalability. Supports modern player forwarding, plugin API, and automatic version resolution via the PaperMC API.

Skip the Setup — Deploy Nowor read the full guide below
RequirementsSetup GuideInstallation

Hardware Requirements

Here's what you need to run a Minecraft - Velocity dedicated server.

Economy

Small proxy, 1-100 players

CPU1 core
RAM512 MB
Storage1 GB

Standard

Large proxy, 100-1000 players

CPU2 cores
RAM1 GB
Storage1 GB

Start hosting from your own computer

Run a Minecraft - Velocity server on your desktop, laptop, VPS, or dedicated machine — GameCP automates Docker setup, resource allocation, and Minecraft - Velocity configuration instantly. Automatic port forwarding means your friends can connect without touching your router. Start local, scale to a VPS when you're ready.

Get Started FreeNo credit card required

Setup in 4 Steps

Skip the manual installation, port forwarding, and configuration. Install on your own computer and start hosting instantly.

Step 01

Create a GameCP Account

Sign up for free at gamecp.com. No credit card required. Your dashboard is ready in seconds.

GameCP gives you a full control panel with Docker containerization, file management, automatic port forwarding, and automatic updates — all built in.

Step 02

Connect Your Hardware

Install GameCP on your own desktop, laptop, VPS, or dedicated machine. One-line install — no SSH expertise needed.

GameCP installs Docker, configures networking, and sets up automatic port forwarding so your friends can connect instantly. Start hosting from your own PC and scale to a VPS later. Supports Windows, macOS, and Linux.

Step 03

Deploy Minecraft - Velocity

Select "Minecraft - Velocity" from the template library and hit deploy. GameCP handles installation, ports, startup commands, and all configuration automatically.

Includes pre-configured velocity.toml. Uses the eclipse-temurin:21-jre-alpine image. ~1 GB storage.

Step 04

Start Playing

Hit start and share your server address. Automatic port forwarding handles the rest — no router config needed.

GameCP monitors your server health and provides live logs from your browser. Your friends connect using the address GameCP gives you.

The Manual Way vs. GameCP

Manual Setup

  • ✗ Configure 1+ firewall ports and router settings
  • ✗ Write systemd service files
  • ✗ SSH into server to edit configs
  • ✗ Requires a VPS or dedicated server
  • ✗ 30-60 minutes if experienced

With GameCP

  • Automatic port forwarding — no router config
  • Host from your own PC, VPS, or dedicated server
  • Docker container with auto-restart
  • Visual config editor in browser
  • Under 5 minutes total

Under the Hood

The full manual process to host a Minecraft - Velocity dedicated server on a VPS. Or install GameCP on your own computer and skip all of this.

Step 1

Configure & Prepare

Set your server settings, then install Docker, and pull the Minecraft - Velocity container image.

Server ConfigurationEdit values to update all commands
terminal
# Update system and install Docker
sudo apt update && sudo apt install -y docker.io
sudo systemctl enable --now docker

# Create game server directory
sudo mkdir -p /opt/gameserver

# Server configuration
export MOTD="${SERVER_NAME}"
export PLAYER_INFO_FORWARDING="modern"
export ONLINE_MODE="true"
export FORCE_KEY_AUTH="true"
export PREVENT_PROXY_CONNECTIONS="false"
export ANNOUNCE_FORGE="false"
export KICK_EXISTING_PLAYERS="false"
export PING_PASSTHROUGH="DISABLED"
export COMPRESSION_THRESHOLD="256"
export COMPRESSION_LEVEL="-1"
export LOGIN_RATELIMIT="3000"
export CONNECTION_TIMEOUT="5000"
export READ_TIMEOUT="30000"
export HAPROXY_PROTOCOL="false"
export TCP_FAST_OPEN="false"
export BUNGEE_PLUGIN_CHANNEL="true"
export ANNOUNCE_PROXY_COMMANDS="true"
export FAILOVER_ON_DISCONNECT="true"
export SHOW_PING_REQUESTS="false"
export LOG_COMMAND_EXECUTIONS="false"
export LOG_PLAYER_CONNECTIONS="true"
export ENABLE_PLAYER_ADDRESS_LOGGING="true"
export QUERY_ENABLED="false"
export QUERY_PORT="25565"
export QUERY_MAP="Velocity"
export QUERY_SHOW_PLUGINS="false"

# Pull the container image
docker pull eclipse-temurin:21-jre-alpine
Step 2

Run the Installation Script

Minecraft - Velocity uses a custom install script to download and configure the server files.

Installation Script
#!/bin/bash

apt update
apt install -y wget curl jq

cd /opt/gameserver || { echo "Failed to change directory to /opt/gameserver"; exit 1; }

# Resolve Velocity version
VEL_VERSION="${VELOCITY_VERSION:-latest}"
VELOCITY_API="https://api.papermc.io/v2/projects/velocity"

if [ "$VEL_VERSION" = "latest" ]; then
  echo "Fetching latest Velocity version..."
  VEL_VERSION=$(curl -sSL "$VELOCITY_API" | jq -r '.versions[-1]')
  echo "Latest Velocity version: $VEL_VERSION"
else
  echo "Using specified version: $VEL_VERSION"
fi

# Verify version exists
VER_CHECK=$(curl -sSL "$VELOCITY_API" | jq -r --arg V "$VEL_VERSION" '.versions[] | select(. == $V)')
if [ -z "$VER_CHECK" ]; then
  echo "WARNING: Version $VEL_VERSION not found. Falling back to latest..."
  VEL_VERSION=$(curl -sSL "$VELOCITY_API" | jq -r '.versions[-1]')
fi

# Get latest build
echo "Fetching latest Velocity build for $VEL_VERSION..."
BUILD_INFO=$(curl -sSL "$VELOCITY_API/versions/$VEL_VERSION/builds")
LATEST_BUILD=$(echo "$BUILD_INFO" | jq -r '.builds[-1].build')
JAR_NAME=$(echo "$BUILD_INFO" | jq -r '.builds[-1].downloads.application.name')

if [ -z "$LATEST_BUILD" ] || [ "$LATEST_BUILD" = "null" ]; then
  echo "ERROR: Could not determine latest build for Velocity $VEL_VERSION!"
  exit 1
fi

DOWNLOAD_URL="$VELOCITY_API/versions/$VEL_VERSION/builds/$LATEST_BUILD/downloads/$JAR_NAME"
echo "Downloading Velocity $VEL_VERSION build $LATEST_BUILD..."
wget -q "$DOWNLOAD_URL" -O velocity.jar
echo "Velocity download completed."

# Generate forwarding secret if it doesn't exist
if [ ! -f forwarding.secret ]; then
  echo "Generating forwarding secret..."
  date +%s | sha256sum | base64 | head -c 24 > forwarding.secret
  echo "Forwarding secret created."
else
  echo "Forwarding secret already exists, keeping it."
fi

echo "Install Completed"
Step 3

Open Firewall Ports

Minecraft - Velocity requires 1 port to be open for game traffic and queries.

terminal
sudo ufw allow 25565/tcp
25565/TCP(PORT)
Step 4

Launch the Server

Start the Minecraft - Velocity server using the configuration from Step 1.

terminal
docker run -d \
  --name minecraft-java-velocity-server \
  -p 25565:25565/tcp \
  -e MOTD="${SERVER_NAME}" \
  -e PLAYER_INFO_FORWARDING="modern" \
  -e ONLINE_MODE="true" \
  -e FORCE_KEY_AUTH="true" \
  -e PREVENT_PROXY_CONNECTIONS="false" \
  -e ANNOUNCE_FORGE="false" \
  -e KICK_EXISTING_PLAYERS="false" \
  -e PING_PASSTHROUGH="DISABLED" \
  -e COMPRESSION_THRESHOLD="256" \
  -e COMPRESSION_LEVEL="-1" \
  -e LOGIN_RATELIMIT="3000" \
  -e CONNECTION_TIMEOUT="5000" \
  -e READ_TIMEOUT="30000" \
  -e HAPROXY_PROTOCOL="false" \
  -e TCP_FAST_OPEN="false" \
  -e BUNGEE_PLUGIN_CHANNEL="true" \
  -e ANNOUNCE_PROXY_COMMANDS="true" \
  -e FAILOVER_ON_DISCONNECT="true" \
  -e SHOW_PING_REQUESTS="false" \
  -e LOG_COMMAND_EXECUTIONS="false" \
  -e LOG_PLAYER_CONNECTIONS="true" \
  -e ENABLE_PLAYER_ADDRESS_LOGGING="true" \
  -e QUERY_ENABLED="false" \
  -e QUERY_PORT="25565" \
  -e QUERY_MAP="Velocity" \
  -e QUERY_SHOW_PLUGINS="false" \
  -v /opt/gameserver:/opt/gameserver \
  -w /opt/gameserver \
  eclipse-temurin:21-jre-alpine \
  java -Xmx -Xms -XX:+UseG1GC -XX:G1HeapRegionSize=4M -XX:+UnlockExperimentalVMOptions -XX:+ParallelRefProcEnabled -XX:+AlwaysPreTouch -XX:MaxInlineLevel=15 -jar velocity.jar

Or skip all of this

GameCP automates every step above: Docker, port forwarding, startup, and config. Install on your own PC and deploy a Minecraft - Velocity server in under 5 minutes.

Deploy with GameCP

More Hosting Guides

Explore step-by-step setup guides for other popular games supported by GameCP.

7 Days to Die

7 Days to Die

Survival

ARK: Survival Ascended

ARK: Survival Ascended

Survival

ARK: Survival Evolved

ARK: Survival Evolved

Survival

Arma Reforger

Arma Reforger

survival

Aska

Aska

Survival

BeamMP

BeamMP

Simulation

Conan Exiles

Conan Exiles

Survival

Counter-Strike 1.6

Counter-Strike 1.6

FPS

View all supported games

Ready to Host Your Minecraft - Velocity Server?

Install GameCP on your own computer and start hosting in minutes. Automatic port forwarding, zero config — your friends connect instantly.

Deploy NowView Pricing

No credit card required · Free tier available · Install local, scale later

Host Minecraft - Velocity from your own computer. Automatic port forwarding. Zero config.

No credit card requiredDeploy Free