From 961cefda551edfb4207ce3d0c403aa427ab0584b Mon Sep 17 00:00:00 2001 From: GLiCID Tech Admins Date: Thu, 26 Jun 2025 10:08:40 +0200 Subject: [PATCH] updating authentik-outpost-ldap service --- glicid/services/authentication.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/glicid/services/authentication.scm b/glicid/services/authentication.scm index 08f107f..4fc4d73 100644 --- a/glicid/services/authentication.scm +++ b/glicid/services/authentication.scm @@ -124,10 +124,13 @@ #$@(if proxy (list (string-append "http_proxy=" proxy) - (string-append "https_proxy=" proxy)) + (string-append "https_proxy=" proxy) + (string-append "HTTP_PROXY=" proxy) + (string-append "HTTPS_PROXY=" proxy)) '()) #$@(if noproxy - (list (string-append "no_proxy=" noproxy)) + (list (string-append "no_proxy=" noproxy) + (string-append "NO_PROXY=" noproxy)) '()) (string-append "AUTHENTIK_HOST=" #$authentik-host) (string-append "AUTHENTIK_TOKEN=" #$authentik-token)