mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
4ad5f9c982
* Allow monolith components to share a single database pool * Don't yell about missing connection strings * Rename field * Setup tweaks * Fix panic * Improve configuration checks * Update config * Fix lint errors * Update comments
27 lines
819 B
Go
27 lines
819 B
Go
package config
|
|
|
|
type KeyServer struct {
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
InternalAPI InternalAPIOptions `yaml:"internal_api"`
|
|
|
|
Database DatabaseOptions `yaml:"database"`
|
|
}
|
|
|
|
func (c *KeyServer) Defaults(generate bool) {
|
|
c.InternalAPI.Listen = "http://localhost:7779"
|
|
c.InternalAPI.Connect = "http://localhost:7779"
|
|
c.Database.Defaults(10)
|
|
if generate {
|
|
c.Database.ConnectionString = "file:keyserver.db"
|
|
}
|
|
}
|
|
|
|
func (c *KeyServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
|
checkURL(configErrs, "key_server.internal_api.listen", string(c.InternalAPI.Listen))
|
|
checkURL(configErrs, "key_server.internal_api.bind", string(c.InternalAPI.Connect))
|
|
if c.Matrix.DatabaseOptions.ConnectionString == "" {
|
|
checkNotEmpty(configErrs, "key_server.database.connection_string", string(c.Database.ConnectionString))
|
|
}
|
|
}
|