-
Notifications
You must be signed in to change notification settings - Fork 3
Configuration
Seppe Volkaerts edited this page Mar 5, 2023
·
2 revisions
proxy:
# The name of the proxy that will be shown in the server list.
name: Terre
# The host address the proxy server will be bound to.
host: 0.0.0.0
# The port the proxy server will be bound to.
port: 7777
# The password that is required to join. Leave empty to disable.
password: ''
# The maximum amount of players that are allowed to join simultaneously. If set to -1,
# players can join as long that backing servers have empty slots.
maxPlayers: -1
# If HAProxy support is enabled, all clients should go through the HAProxy when enabled.
haProxy: false
# The servers that can be connected to through the proxy. When adding a server it is required
# to specify the name and address to connect to it. And if necessary a password. Setting
# allowAutoJoin to true allows players to automatically connect to this server when connecting
# to the proxy for the first time.
servers:
- # The name of the backing server.
name: lobby
# The ip address and port to connect to the backing server.
address: 127.0.0.1:7778
# The password needed to connect to the backing server.
password: ''
# If players are allowed to automatically connect to the backing server when joining.
allowAutoJoin: true
# The protocol used to connect to the backing server. Leave empty for auto detection.
protocol: ''
- name: survival
address: 127.0.0.1:7779
password: ''
allowAutoJoin: false
protocol: ''
# A list with the names of plugins that should be disabled. Useful for disabling plugins
# that are included in the docker image.
disabledPlugins: []
# Configuration related to the LAN broadcast
localBroadcast:
enabled: true