From 0a673b54a948ade4030975dd254c422d739fedad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 29 Dec 2022 14:22:30 +0100 Subject: [PATCH] fix(esphome): fix nginx proxy --- services/esphome.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/esphome.nix b/services/esphome.nix index 2f696c6..d9066d1 100644 --- a/services/esphome.nix +++ b/services/esphome.nix @@ -11,7 +11,7 @@ in { enableACME = true; forceSSL = true; locations."/" = { - proxyPass = "http://[::1]:${toString port}"; + proxyPass = "http://localhost:${toString port}"; proxyWebsockets = true; }; };