fix: pass domain as protocol subdomain
This commit is contained in:
parent
866fa89cee
commit
59a3ac6b64
|
@ -2,6 +2,7 @@ package protocols
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/ed25519"
|
"crypto/ed25519"
|
||||||
|
"fmt"
|
||||||
s5config "git.lumeweb.com/LumeWeb/libs5-go/config"
|
s5config "git.lumeweb.com/LumeWeb/libs5-go/config"
|
||||||
s5ed "git.lumeweb.com/LumeWeb/libs5-go/ed25519"
|
s5ed "git.lumeweb.com/LumeWeb/libs5-go/ed25519"
|
||||||
s5interfaces "git.lumeweb.com/LumeWeb/libs5-go/interfaces"
|
s5interfaces "git.lumeweb.com/LumeWeb/libs5-go/interfaces"
|
||||||
|
@ -52,7 +53,7 @@ func (s *S5Protocol) Initialize(portal interfaces.Portal) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg.HTTP.API.Domain = config.GetString("core.domain")
|
cfg.HTTP.API.Domain = fmt.Sprintf("s5.%s", config.GetString("core.domain"))
|
||||||
|
|
||||||
if config.IsSet("core.externalPort") {
|
if config.IsSet("core.externalPort") {
|
||||||
cfg.HTTP.API.Port = config.GetUint("core.externalPort")
|
cfg.HTTP.API.Port = config.GetUint("core.externalPort")
|
||||||
|
|
Loading…
Reference in New Issue