fix database strings substitution

before the change file database was used although mariadb was supposed to be used
This commit is contained in:
cuqmbr 2025-08-03 10:50:37 +03:00
parent 17b3fc2590
commit 2b7054c519
Signed by: cuqmbr
GPG Key ID: 1F62396D020F375C

View File

@ -77,11 +77,11 @@ timeouts:
# Authentication details for remote databases: used for MariaDB, MySQL, PostgreSQL, and CockroachDB. # Authentication details for remote databases: used for MariaDB, MySQL, PostgreSQL, and CockroachDB.
auth-details: auth-details:
database: 'minecraft_db' host: '_LIBERTYBANS_DB_HOST_'
password: '0000' port: _LIBERTYBANS_DB_PORT_
user: 'minecraft' database: '_LIBERTYBANS_DB_NAME_'
host: '127.0.0.1' user: '_LIBERTYBANS_DB_USERNAME_'
port: 3306 password: '_LIBERTYBANS_DB_PASSWORD_'
# The values in this section only apply when using a MariaDB or MySQL database # The values in this section only apply when using a MariaDB or MySQL database
mariadb: mariadb:
@ -111,7 +111,7 @@ use-traditional-jdbc-url: false
# 'MYSQL' - Requires an external MySQL database. At least MySQL 8.0 is required. # 'MYSQL' - Requires an external MySQL database. At least MySQL 8.0 is required.
# 'POSTGRES' - Requires an external PostgreSQL database. At least PostgreSQL 12 is required. # 'POSTGRES' - Requires an external PostgreSQL database. At least PostgreSQL 12 is required.
# 'COCKROACH' - Requires an external CockroachDB database. The latest CockroachDB is required. Warning: this option is strictly experimental. # 'COCKROACH' - Requires an external CockroachDB database. The latest CockroachDB is required. Warning: this option is strictly experimental.
rdms-vendor: 'HSQLDB' rdms-vendor: 'MARIADB'
# #
# How large should the connection pool be? # How large should the connection pool be?
# A thread pool of similar size is derived from the connection pool size. # A thread pool of similar size is derived from the connection pool size.