17 lines
370 B
TOML
17 lines
370 B
TOML
# This is the SSX3LobbyServer configuration file.
|
|
|
|
[lobbyserver]
|
|
listen_address = "127.0.0.1"
|
|
|
|
# Listen ports.
|
|
buddy_listen_port = 10998
|
|
lobby_listen_port = 11000
|
|
|
|
# Database configuration. This is required to run the service.
|
|
[lobbyserver.database]
|
|
host = "/run/mysqld/mysqld.sock"
|
|
user = "lobbyserver"
|
|
# Change this!
|
|
password = "pa55w0rd1234"
|
|
database = "lobbyserver"
|