GeyserConnect/src/main/resources/config.yml
Greaper88 f5a93e8b11
Added Featured servers to server list (#20)
* Added Featured servers to server list

* Update config.yml

Co-authored-by: rtm516 <rtm516@users.noreply.github.com>
2021-01-27 16:36:43 +00:00

115 lines
2.9 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"
# Welcome message file, if file exists and is not empty this will show on join
# This is loaded live so will update without a server restart
welcome-file: welcome.txt
# Config for the Geyser listener
geyser:
# The port that will listen for connections
port: 19133
# Configures if chunk caching should be enabled or not.
cache-chunks: true
# If password authentication should be allowed in online mode.
allow-password-authentication: false
# If debug messages should be sent through console, has to be enabled in both places to work
debug-mode: false
# The time to wait after the last player disconnects to shutdown the proxy
# In seconds, set to -1 to disable
shutdown-time: 300
# A global list of servers sent to all clients
servers:
- name: The Hive
address: 167.114.81.89
port: 19132
bedrock: true
category: OFFICIAL
imageUrl: 'https://i.imgur.com/VQJW6XG.png'
- name: CubeCraft
address: 94.23.159.81
port: 19132
bedrock: true
category: OFFICIAL
imageUrl: 'https://www.cubecraft.net/attachments/q3pmrsod_400x400-png.53219/'
- name: Galaxite
address: 54.39.243.199
port: 19132
bedrock: true
category: OFFICIAL
imageUrl: >-
https://pbs.twimg.com/profile_images/1275867042583896066/UMPF5nTM_400x400.jpg
- name: Lifeboat Network
address: 63.143.54.198
port: 19132
bedrock: true
category: OFFICIAL
imageUrl: 'https://lbsg.net/wp-content/uploads/2017/06/lifeboat-square.png'
- name: Mineplex
address: 108.178.12.38
port: 19132
bedrock: true
category: OFFICIAL
imageUrl: 'https://www.mineplex.com/assets/www-mp/img/footer/footer_smalllogo.png'
- name: MineVille
address: 52.234.130.255
port: 19132
bedrock: true
category: OFFICIAL
imageUrl: >-
https://pbs.twimg.com/profile_images/1332400307050045441/MHQvGEUP_400x400.jpg
- name: Official Geyser Test Server
address: test.geysermc.org
port: 19132
bedrock: true
category: GEYSER
imageUrl: 'https://geysermc.org/android-chrome-192x192.png'
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