Setting up servers
On this page, you will learn about game servers and authentication servers, as well as how to configure and specify them in the config.yml configuration file.
First, you need to configure the servers to which players will be directed when the authentication process starts and after it is completed.
For this edit config.yml
like this:
auth-servers:
- <Auth server name>
game-servers:
- <Game server name>
If you do not want or are unable to create an authentication server, what should you do?
If you don't have an authentication server or the ability to create one, you can use plugins that create a limbo or waiting area, such as NanoLimboPlugin
.
How to get server name
Open folder with
BungeeCord.jar
, then findconfig.yml
and open itFind section servers (Usually it is at the end of config):
... servers:
first
: ...
second
: ...
In that example we have 2 server: first and second, find your server name, and copy to somewhere
Setting up auth and game servers to config.yml
config.yml
Just enter your server names to config.yml
. For example:
first - authorization server
second - game server
And result would be in config.yml
:
...
auth-servers:
- first
game-servers:
- second
...
Last updated