From d07c22f079b3e3acc1ef2debe1189ac416190fbf Mon Sep 17 00:00:00 2001 From: Bnyro Date: Sun, 23 Jun 2024 16:40:27 +0200 Subject: [PATCH] fix: nginx fails due to wrong docker hostname closes https://github.com/TeamPiped/Piped/issues/3679 --- template/pipedfrontend.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/pipedfrontend.conf b/template/pipedfrontend.conf index bb24922..0b9a281 100644 --- a/template/pipedfrontend.conf +++ b/template/pipedfrontend.conf @@ -1,5 +1,5 @@ upstream frontend { - server pipedfrontend:80; + server piped-frontend:80; } server { listen 80;