51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
#
|
|
# $Id: thetya-server 2020-11-11 14:24 micha $
|
|
#
|
|
# Configuration for a Thetya server instance
|
|
|
|
#
|
|
# The private key to encrypt, decrypt and securely authenticate.
|
|
key.private =
|
|
|
|
#
|
|
# The hostname this server will bind to. It will also listen to datagrams
|
|
# on this hostname unless you specify the hostname.datagram property.
|
|
hostname.bind =
|
|
|
|
#
|
|
# The ports this server will listen on. Defaults to 47624.
|
|
ports.listen = 47624
|
|
|
|
#
|
|
# The ports this server will listen to datagrams on. Defaults to 47625.
|
|
ports.datagram = 47625
|
|
|
|
#
|
|
# Whether debug logging (all levels) should be enabled.
|
|
debug.verboselog = true
|
|
|
|
#
|
|
# Server authenticator's class name - should extend
|
|
# ThetyaAuthenticator or the base presents Authenticator.
|
|
server.authenticator = com.github.thetya.server.ooo.OOOAuthenticator
|
|
|
|
#
|
|
# Database settings for the ooo-user db.
|
|
db.userdb.driver = com.mysql.jdbc.Driver
|
|
db.userdb.url = jdbc:mysql://localhost:3306/snarbolax_userdb
|
|
db.userdb.username = snarbolax
|
|
db.userdb.password = snarbolax
|
|
|
|
#
|
|
# Database settings for the account action db.
|
|
db.actiondb.driver = com.mysql.jdbc.Driver
|
|
db.actiondb.url = jdbc:mysql://localhost:3306/snarbolax_actiondb
|
|
db.actiondb.username = snarbolax
|
|
db.actiondb.password = snarbolax
|
|
|
|
#
|
|
# Database settings for the main game db.
|
|
db.projectxdb.driver = com.mysql.jdbc.Driver
|
|
db.projectxdb.url = jdbc:mysql://localhost:3306/snarbolax_projectxdb
|
|
db.projectxdb.username = snarbolax
|
|
db.projectxdb.password = snarbolax |