1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Minecraft BungeeCordプロキシサーバーのconfigの書き方

Posted at

Minecraft BungeeCordとは

BungeeCordとはプロキシサーバーの一部で、プレイヤーが各サーバーに転送する役目をもっているサーバーソフトウェアです。
今回は、そのBungeeCordのconfig.ymlの書き方をこのブログに残していきます。

Bungeeの他にもWaterFAllやVelcityがあります。今回はBungeeCordです。

ポート開放が可能な環境が必須です。

今回のポート一覧
HUB:25567
サバイバルサーバー:25568
プロキシサーバー:25577

config.yml
server_connect_timeout: 5000
enforce_secure_profile: false
remote_ping_cache: -1
forge_support: false
player_limit: -1
permissions:
  default:
  - bungeecord.command.server
  - bungeecord.command.list
  admin:
  - bungeecord.command.alert
  - bungeecord.command.end
  - bungeecord.command.ip
  - bungeecord.command.reload
  - bungeecord.command.kick
timeout: 30000
log_commands: false
network_compression_threshold: 256
online_mode: true
disabled_commands:
- disabledcommandhere
servers:
  lobby:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25565
    restricted: false
listeners:
- query_port: 25577
  motd: '&1Another Bungee server'
  tab_list: GLOBAL_PING
  query_enabled: false
  proxy_protocol: false
  forced_hosts:
    pvp.md-5.net: pvp
  ping_passthrough: false
  priorities:
  - lobby
  bind_local_address: true
  host: 0.0.0.0:25577
  max_players: 1
  tab_size: 60
  force_default_server: false
ip_forward: false
remote_ping_timeout: 5000
reject_transfers: false
prevent_proxy_connections: false
groups:
  md_5:
  - admin
connection_throttle: 4000
stats: a4221039-e797-4e0e-8a44-a38840023a45
connection_throttle_limit: 3
log_pings: true

この構文はconfig.ymlの初期値です。

このままでは、サーバーにプレイヤーを転送することができません。
なぜかって?それは"ポート"を指定していないからです...

config.yml
servers:
  lobby:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25565
    restricted: false

では実際にポートを指定していきましょう。servers:を探して

config.yml
servers:
  lobby:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25565
    restricted: false

この25565を変更していきます。
欄が足りないって?その場合は追加してしまいましょう。

config.yml
servers:
  lobby:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25565
    restricted: false
  server1:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25565
    restricted: false

このlobbyやserver1の名前は自由に変えられます。用途によって変えましょう。

このBUngeeCordにはプラグインというのが別であります。例えば、BungeeHUB。/hubを入力したらHUBに移動するプラグインなど。

わからないことがあったらコメントへ。
メールも可能:yukamomizi1952@gmail.com

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?