Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keyraphi committed Apr 14, 2020
1 parent 05c5634 commit 2b98ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configuration/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (config *ServerConfigurationSchema) ExternalURL() string {
if config.HTTP.UseHTTPS {
protocoll = "https"
}
return fmt.Sprintf("%s://%v:%v", protocoll, config.HTTP.Domain)
return fmt.Sprintf("%s://%v", protocoll, config.HTTP.Domain)
}

type PathsConfiguration struct {
Expand Down

0 comments on commit 2b98ae9

Please sign in to comment.