diff --git a/FE/nginx/nginx.conf b/FE/nginx/nginx.conf index ea9d3b27..f3e9d418 100644 --- a/FE/nginx/nginx.conf +++ b/FE/nginx/nginx.conf @@ -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; + } } \ No newline at end of file