From 4f9467e312b2305c66b3ca1ce3662f48de29ba3d Mon Sep 17 00:00:00 2001 From: bayanolla Date: Wed, 29 Oct 2025 16:51:41 +0300 Subject: [PATCH] Fix Nginx template environment variable syntax for Docker deployment --- nginx-template.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-template.conf b/nginx-template.conf index 57f3a5c..dfce65d 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';