From 6e0e66109397627adbd290f08380d6f2b9982d3e Mon Sep 17 00:00:00 2001 From: bayanolla Date: Wed, 29 Oct 2025 16:57:13 +0300 Subject: [PATCH] Fix Nginx template variable syntax - use instead of --- nginx-template.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-template.conf b/nginx-template.conf index dfce65d..57f3a5c 100644 --- a/nginx-template.conf +++ b/nginx-template.conf @@ -11,7 +11,7 @@ server { # Proxy API requests to the backend server location /api/ { - proxy_pass http://${BACKEND_HOST}:${BACKEND_PORT}/; + proxy_pass http://$BACKEND_HOST:$BACKEND_PORT/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade';