From a65c55f7a1ded57ee9eeb36db25a3c7b5f41489c Mon Sep 17 00:00:00 2001 From: Taeer Bar-Yam Date: Mon, 23 Sep 2024 12:18:22 -0400 Subject: [PATCH] ADD http:// to proxypass --- fediversity/garage.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fediversity/garage.nix b/fediversity/garage.nix index b3d33a99..46fa6dc0 100644 --- a/fediversity/garage.nix +++ b/fediversity/garage.nix @@ -175,7 +175,7 @@ in services.nginx.virtualHosts."garagePortProxy" = { serverName = "*.${fedicfg.web.rootDomain}"; locations."/" = { - proxyPass = "localhost:3902"; + proxyPass = "http://localhost:3902"; extraConfig = '' proxy_set_header Host $host; '';