Skip to content

Clean up configuration

Charles Hall requested to merge charles/config into main

Breaking config file change

Notably, this MR removes the [global] section from the configuration file. For example, if you had a config like this:

[global]
server_name = "example.com"
database_backend = "rocksdb"

Then after this MR, the config will need to be adjusted to look like this:

server_name = "example.com"
database_backend = "rocksdb"
Edited by Charles Hall

Merge request reports