我已经使用 Nginx 设置了一个 Linux AMI Node.js 应用程序。应用程序使用端口 4100 作为前端,使用端口 3000 作为后端。我的前端端口 4100 运行正常,但后端出现错误“'https://test.example.com/login' 通过 HTTPS 加载,但请求了不安全的 XMLHttpRequest 端点http://test.example.com:3000/api/users/login“
location / {
proxy_pass http://127.0.0.1:4100;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_cache_bypass $http_upgrade;
}
我不确定如何在 nginx 中重写此 api。有人可以帮忙吗? http://test.example.com:3000/api/users/login
location /api/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:3000/;
proxy_redirect off;
}