nginx-在 /api以外的所有路由上发送index.html

发布于 2025-01-21 16:58:01 字数 895 浏览 0 评论 0原文

我使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文