mysql:
connection:
# Turn on/off the MySQL connection.
enabled: false
# The address to connect to the database.
url: "jdbc:mysql://{HOST}:{PORT}/{NAME}"
# The highest number of connections allowed at once.
maximum-pool-size: 10
# The lowest number of spare connections to keep ready.
minimum-idle: 5
# How long a connection can exist (in milliseconds).
max-lifetime: 1800000
# How long an unused connection stays open (in milliseconds).
idle-timeout: 600000
# How long to wait for a connection before giving up (in milliseconds).
connection-timeout: 30000
# Time to wait before warning about a stuck connection (in milliseconds).
leak-detection-threshold: 60000
# Automatically save database changes.
auto-commit: true
credentials:
# The computer address where MySQL is running.
host: "value"
# The connection port number for MySQL.
port: "3306"
# The name of your database.
name: "value"
# Your MySQL username.
user: "value"
# Your MySQL password.
pass: "value"