Fix Nginx template variable syntax - use instead of

هذا الالتزام موجود في:
2025-10-29 16:57:13 +03:00
الأصل 4f9467e312
التزام 6e0e661093

عرض الملف

@@ -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';