From 68d608752159c7cf8c1cfc189d5359a1bb0df671 Mon Sep 17 00:00:00 2001 From: MoonTestUse1 Date: Tue, 24 Dec 2024 18:11:31 +0600 Subject: [PATCH] =?UTF-8?q?cha2524222fvdf=D0=B0=D0=B2=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nginx/sites-available/support-app.conf | 34 ++++++++++++++----- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/backend/etc/nginx/sites-available/support-app.conf b/backend/etc/nginx/sites-available/support-app.conf index b3d5339..ee12576 100644 --- a/backend/etc/nginx/sites-available/support-app.conf +++ b/backend/etc/nginx/sites-available/support-app.conf @@ -6,19 +6,37 @@ server { location / { proxy_pass http://localhost:8080; proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; - proxy_cache_bypass $http_upgrade; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + + # WebSocket support + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + + # Таймауты + proxy_connect_timeout 60s; + proxy_send_timeout 60s; + proxy_read_timeout 60s; } # Backend API location /api/ { - proxy_pass http://localhost:8081; + proxy_pass http://localhost:8081/api/; proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; - proxy_cache_bypass $http_upgrade; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + + # Таймауты + proxy_connect_timeout 60s; + proxy_send_timeout 60s; + proxy_read_timeout 60s; } -} \ No newline at end of file + + # Логи + access_log /var/log/nginx/support-app-access.log; + error_log /var/log/nginx/support-app-error.log; +}