我已经为 React 前端和 Node 后端设置了一个带有 Nginx 配置的服务器。
Node 应用程序用作 react 应用程序的 API。/api/... 的节点路由被传递到以下路径:/client/public/api/... 这将导致 404。
我了解可能会添加什么,我假设根定义具有 /client/public/ 路径定义。但是无法使用 Nginx Config 找到解决方案,附在下面。
路径字符串的 /client/public/ 部分不应位于请求 URL 的 uri 中。
server {
listen 80;
server_name www.domain.com;
root /var/www/site_folder/client/public;
index index.html;
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires max;
}
location /api/(.*)$ {
proxy_pass http://localhost:5000;
}
location ~ /\.ht {
deny all;
}
}