outposts/proxy: detect empty authentik_host
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
@ -12,7 +12,7 @@
|
|||||||

|

|
||||||

|

|
||||||

|

|
||||||
[Transifex](https://www.transifex.com/beryjuorg/authentik/)
|
[](https://www.transifex.com/beryjuorg/authentik/)
|
||||||
|
|
||||||
## What is authentik?
|
## What is authentik?
|
||||||
|
|
||||||
|
|||||||
@ -39,8 +39,8 @@ func intToPointer(i int) *int {
|
|||||||
func (pb *providerBundle) replaceLocal(url string) string {
|
func (pb *providerBundle) replaceLocal(url string) string {
|
||||||
if strings.HasPrefix(url, "http://localhost:8000") {
|
if strings.HasPrefix(url, "http://localhost:8000") {
|
||||||
authentikHost, c := pb.s.ak.Outpost.Config["authentik_host"]
|
authentikHost, c := pb.s.ak.Outpost.Config["authentik_host"]
|
||||||
if !c {
|
if !c || authentikHost == "" {
|
||||||
pb.log.Warning("Outpost has localhost API Connection but no authentik_host is configured.")
|
pb.log.Warning("Outpost has localhost/blank API Connection but no authentik_host is configured.")
|
||||||
return url
|
return url
|
||||||
}
|
}
|
||||||
f := strings.ReplaceAll(url, "http://localhost:8000", authentikHost.(string))
|
f := strings.ReplaceAll(url, "http://localhost:8000", authentikHost.(string))
|
||||||
|
|||||||
Reference in New Issue
Block a user