26 lines
782 B
Go
26 lines
782 B
Go
package options
|
|
|
|
func (o *HttpServerOpt) Defaults() {
|
|
if Environment().IsDevelopment() {
|
|
// enable web console and remove username, password defaults
|
|
// if this is explicitly via ENV, it will override these defaults
|
|
o.WebConsoleEnabled = true
|
|
o.WebConsoleUsername = ""
|
|
o.WebConsolePassword = ""
|
|
}
|
|
}
|
|
|
|
func (o *HttpServerOpt) Cleanup() {
|
|
o.BaseUrl = CleanBase(o.BaseUrl)
|
|
o.ApiBaseUrl = CleanBase(o.ApiBaseUrl)
|
|
o.WebappBaseUrl = CleanBase(o.WebappBaseUrl)
|
|
|
|
if o.WebappEnabled && o.ApiEnabled && (o.ApiBaseUrl == "/" || o.ApiBaseUrl == "") {
|
|
// api base URL is still on root (empty string)
|
|
// but webapps are enabled (that means, server also serves static files from WebappBaseDir)
|
|
//
|
|
// Let's be nice and move API to /api
|
|
o.ApiBaseUrl = CleanBase("api")
|
|
}
|
|
}
|