You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
787 B
26 lines
787 B
# This file defines the default configuration settings.
|
|
##### DO NOT EDIT THIS FILE. #####
|
|
# Your changes may be overwritten in a future update.
|
|
# Instead, edit the custom configuration file located at "data/settings.toml".
|
|
|
|
[database]
|
|
# Settings that control the database, or the connection to it
|
|
|
|
type = "mysql" # MariaDB. MySQL servers might work too, but no promises.
|
|
|
|
# The host that the database is running on. Both IP addresses & domain names are fine :-)
|
|
host = "localhost"
|
|
# The database to use.
|
|
name = "aq_db"
|
|
|
|
# The username to connect with
|
|
username = "user"
|
|
# the password to connect with
|
|
password = "Define_in_custom_config_file"
|
|
|
|
[routing]
|
|
# Settings that control the router's behaviour
|
|
|
|
# The default action to take if no action is specified
|
|
default-action = "fetch-data"
|