aboutsummaryrefslogtreecommitdiff
path: root/setup/config/config_keyserver.go
diff options
context:
space:
mode:
Diffstat (limited to 'setup/config/config_keyserver.go')
-rw-r--r--setup/config/config_keyserver.go26
1 files changed, 15 insertions, 11 deletions
diff --git a/setup/config/config_keyserver.go b/setup/config/config_keyserver.go
index 5f2f22c8..dca9ca9f 100644
--- a/setup/config/config_keyserver.go
+++ b/setup/config/config_keyserver.go
@@ -3,27 +3,31 @@ package config
type KeyServer struct {
Matrix *Global `yaml:"-"`
- InternalAPI InternalAPIOptions `yaml:"internal_api"`
+ InternalAPI InternalAPIOptions `yaml:"internal_api,omitempty"`
- Database DatabaseOptions `yaml:"database"`
+ Database DatabaseOptions `yaml:"database,omitempty"`
}
-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) Defaults(opts DefaultOpts) {
+ if !opts.Monolithic {
+ c.InternalAPI.Listen = "http://localhost:7779"
+ c.InternalAPI.Connect = "http://localhost:7779"
+ c.Database.Defaults(10)
+ }
+ if opts.Generate {
+ if !opts.Monolithic {
+ c.Database.ConnectionString = "file:keyserver.db"
+ }
}
}
func (c *KeyServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
- if c.Matrix.DatabaseOptions.ConnectionString == "" {
- checkNotEmpty(configErrs, "key_server.database.connection_string", string(c.Database.ConnectionString))
- }
if isMonolith { // polylith required configs below
return
}
+ if c.Matrix.DatabaseOptions.ConnectionString == "" {
+ checkNotEmpty(configErrs, "key_server.database.connection_string", string(c.Database.ConnectionString))
+ }
checkURL(configErrs, "key_server.internal_api.listen", string(c.InternalAPI.Listen))
checkURL(configErrs, "key_server.internal_api.connect", string(c.InternalAPI.Connect))
}