forked from git-mirrors/GeyserConnect
Add config
This commit is contained in:
parent
61d3aca4af
commit
fc3b792e84
9 changed files with 106 additions and 35 deletions
23
src/main/resources/config.yml
Normal file
23
src/main/resources/config.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
# --------------------------------
|
||||
# GeyserMulti Configuration File
|
||||
# --------------------------------
|
||||
|
||||
# The port that will listen for connections
|
||||
port: 19132
|
||||
|
||||
# If debug messages should be sent through console
|
||||
debug-mode: false
|
||||
|
||||
# Maximum amount of players that can connect
|
||||
max-players: 100
|
||||
|
||||
# MOTD to display
|
||||
motd: "GeyserMulti Proxy"
|
||||
|
||||
# Config for the geyser listener
|
||||
geyser:
|
||||
# The port that will listen for connections
|
||||
port: 19133
|
||||
|
||||
# If debug messages should be sent through console, has to be enabled in both places to work
|
||||
debug-mode: false
|
|
@ -11,10 +11,10 @@ bedrock:
|
|||
# The IP address that will listen for connections
|
||||
address: 0.0.0.0
|
||||
# The port that will listen for connections
|
||||
port: 19133
|
||||
port: PORT
|
||||
# The MOTD that will be broadcasted to Minecraft: Bedrock Edition clients. Irrelevant if "passthrough-motd" is set to true
|
||||
motd1: "GeyserMC"
|
||||
motd2: "Another GeyserMC forced host."
|
||||
motd1: "MOTD"
|
||||
motd2: "MOTD"
|
||||
remote:
|
||||
# The IP address of the remote (Java Edition) server
|
||||
address: 127.0.0.1
|
||||
|
@ -58,7 +58,7 @@ legacy-ping-passthrough: false
|
|||
ping-passthrough-interval: 3
|
||||
|
||||
# Maximum amount of players that can connect
|
||||
max-players: 100
|
||||
max-players: PLAYERS
|
||||
|
||||
# If debug messages should be sent through console
|
||||
debug-mode: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue