我有一个 React 应用程序,我需要与在端口 5000(通过 pm2)上运行的 Node 服务器通信并成为我网站的根目录。Node 服务器从 API 获取一些数据并将其返回给客户端。现在我让 Nginx 指向端口 5000(我按照教程来进行测试)。
假设我的 React 应用程序位于 /www/ReactApp/dist/,我如何将 Nginx 指向那个而不是端口 5000 上的 Node 服务器?
基本上,我需要的只是您访问 myapp.com 时提供的 /www/ReactApp/dist/ 的内容,但使用现有的 SSL 证书。
Node server.js 将在后台运行,我的 React 应用程序将调用它以获取数据。
这是我的 /etc/nginx/sites-enabled/default 的内容:
# HTTP — redirect all traffic to HTTPS
server {
listen 80;
listen [::]:80 default_server ipv6only=on;
return 301 https://$host$request_uri;
}
# HTTPS — proxy all requests to the Node app
server {
# Enable HTTP/2
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name myapp.com;
# Use the Let’s Encrypt certificates
ssl_certificate /etc/letsencrypt/live/myapp.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/myapp.com/privkey.pem;
# Include the SSL configuration from cipherli.st
include snippets/ssl-params.conf;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://localhost:5000/;
proxy_ssl_session_reuse off;
proxy_set_header Host $http_host;
proxy_cache_bypass $http_upgrade;
proxy_redirect off;
}
}