Skip to content

Commit

Permalink
๐Ÿ”ง fix: nginx์— sse ๊ด€๋ จ ์„ค์ • ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuo3o committed Nov 22, 2024
1 parent 58cad28 commit 5f62729
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions FE/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,16 @@ server {
index index.html index.htm;
try_files $uri $uri/ /index.html;
}

location /api {
proxy_pass http://175.45.204.158:3000;
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 24h;
proxy_send_timeout 24h;
proxy_request_buffering off;
}
}

0 comments on commit 5f62729

Please sign in to comment.