From 1538eed30c4e1a40e852f5477db55ecc1c024b30 Mon Sep 17 00:00:00 2001 From: MoonTestUse1 Date: Tue, 24 Dec 2024 18:03:32 +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 | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 backend/etc/nginx/sites-available/support-app.conf diff --git a/backend/etc/nginx/sites-available/support-app.conf b/backend/etc/nginx/sites-available/support-app.conf new file mode 100644 index 0000000..b3d5339 --- /dev/null +++ b/backend/etc/nginx/sites-available/support-app.conf @@ -0,0 +1,24 @@ +server { + listen 80; + server_name 185.139.70.62; + + # Frontend + 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; + } + + # Backend API + location /api/ { + proxy_pass http://localhost:8081; + 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; + } +} \ No newline at end of file