GeyserConnectCustom/src/main/resources/config.yml
2020-06-17 00:39:37 +01:00

55 lines
1.2 KiB
YAML

# --------------------------------
# GeyserConnect Configuration File
# --------------------------------
# The IP address that will listen for connections
address: 0.0.0.0
# The IP address remote clients use to connect, can be set to 'auto' to fetch from the web
remote-address: auto
# 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: "GeyserConnect 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
# A global list of servers sent to all clients
servers:
- address: "play.cubecraft.net"
- address: "127.0.0.1"
port: 25565
custom-servers:
# Should custom servers be enabled for users
enabled: false
# Max amount of custom servers per user
max: 10
# Storage engine for custom servers
# Can be json, sqlite, mysql
storage-type: json
# Connection details for the mysql storage type
mysql:
user: "geyser_connect"
pass: ""
database: "geyser_connect"
host: "localhost"
port: 3306