nginx-在 /api以外的所有路由上发送index.html
我使用nginx作为反向代理来服务React Application和Backend API。
upstream api {
server localhost:5000;
}
server {
root /var/www/example.com/html;
index index.html index.htm index.nginx-debian.html;
server_name example.com www.example.com;
location / {
try_files $uri $uri/ =404;
}
location /api {
rewrite /api/(.*) /$1 break;
proxy_pass http://api;
}
// Ideally, the solution should redirect this routes to use /var/www/example.com/html/index.html
// 1. example.com/teams/1 -> would resolve into react app being served (/var/www/example.com/html/index.html)
// 2. example.com/homepage -> would resolve into react app being served (/var/www/example.com/html/index.html)
// 3. example.com/api/teams/1 -> would resolve into upstream api (localhost:5000/teams/1)
}
我如何在Nginx中实现这样的目标?
I am using Nginx as reverse proxy to serve react application and backend api.
upstream api {
server localhost:5000;
}
server {
root /var/www/example.com/html;
index index.html index.htm index.nginx-debian.html;
server_name example.com www.example.com;
location / {
try_files $uri $uri/ =404;
}
location /api {
rewrite /api/(.*) /$1 break;
proxy_pass http://api;
}
// Ideally, the solution should redirect this routes to use /var/www/example.com/html/index.html
// 1. example.com/teams/1 -> would resolve into react app being served (/var/www/example.com/html/index.html)
// 2. example.com/homepage -> would resolve into react app being served (/var/www/example.com/html/index.html)
// 3. example.com/api/teams/1 -> would resolve into upstream api (localhost:5000/teams/1)
}
How can I achieve something like this within Nginx?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论