mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 15:08:59 +01:00
9677a95afc
* Start HTTP endpoint refactoring * Update SetupAndServeHTTP * Fix builds * Don't set up external listener if no address configured * TLS HTTP setup * Break apart client/federation/key/media muxes * Tweaks * Fix P2P demos * Fix media API routing * Review comments @Kegsay * Update sample config * Fix gobind build * Fix External -> Public in federation API test
22 lines
733 B
Go
22 lines
733 B
Go
package config
|
|
|
|
type RoomServer struct {
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
InternalAPI InternalAPIOptions `yaml:"internal_api"`
|
|
|
|
Database DatabaseOptions `yaml:"database"`
|
|
}
|
|
|
|
func (c *RoomServer) Defaults() {
|
|
c.InternalAPI.Listen = "http://localhost:7770"
|
|
c.InternalAPI.Connect = "http://localhost:7770"
|
|
c.Database.Defaults()
|
|
c.Database.ConnectionString = "file:roomserver.db"
|
|
}
|
|
|
|
func (c *RoomServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
|
checkURL(configErrs, "room_server.internal_api.listen", string(c.InternalAPI.Listen))
|
|
checkURL(configErrs, "room_server.internal_ap.bind", string(c.InternalAPI.Connect))
|
|
checkNotEmpty(configErrs, "room_server.database.connection_string", string(c.Database.ConnectionString))
|
|
}
|