From 940dbed150b7a3f6edb59b1ac50210100c539cb8 Mon Sep 17 00:00:00 2001 From: host Date: Sat, 25 Jul 2026 03:44:07 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nginx.conf | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index 1acd6fd..0000000 --- a/nginx.conf +++ /dev/null @@ -1,20 +0,0 @@ -server { - listen 5173; - server_name _; - - root /usr/share/nginx/html; - index index.html; - - location / { - try_files $uri /index.html; - } - - location /api/ { - proxy_pass http://backend:8000/; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; - } -}