mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Prepends https protocol to the inmem org logo url (#685)
This commit is contained in:
parent
d653cdf281
commit
a84c40061a
1 changed files with 1 additions and 1 deletions
|
|
@ -512,7 +512,7 @@ func (d *Datastore) createDevHosts() error {
|
|||
func (d *Datastore) createDevOrgInfo() error {
|
||||
devOrgInfo := &kolide.AppConfig{
|
||||
OrgName: "Kolide",
|
||||
OrgLogoURL: fmt.Sprintf("%s/assets/images/kolide-logo.svg", d.config.Server.Address),
|
||||
OrgLogoURL: fmt.Sprintf("https://%s/assets/images/kolide-logo.svg", d.config.Server.Address),
|
||||
SMTPPort: 587,
|
||||
SMTPAuthenticationType: kolide.AuthTypeUserNamePassword,
|
||||
SMTPEnableTLS: true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue