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.
auth-details:
database: 'minecraft_db'
password: '0000'
user: 'minecraft'
host: '127.0.0.1'
port: 3306
host: '_LIBERTYBANS_DB_HOST_'
port: _LIBERTYBANS_DB_PORT_
database: '_LIBERTYBANS_DB_NAME_'
user: '_LIBERTYBANS_DB_USERNAME_'
password: '_LIBERTYBANS_DB_PASSWORD_'
# The values in this section only apply when using a MariaDB or MySQL database
mariadb:
@ -111,7 +111,7 @@ use-traditional-jdbc-url: false
# '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.
# '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?
# A thread pool of similar size is derived from the connection pool size.