nginx如何配置才可以让同一域名不同端口的前后端进行交互。

发布于 2022-09-07 08:35:04 字数 1249 浏览 12 评论 0

现在我的项目的前端是react,后端是ssm,前端在localhost:3000 ,后端在localhost:8080,
也就是localhost:3000的请求如何转到localhost:8080,
如何正确设置nginx的location
以下是我的location配置:

   server { 
   listen 80; 
   
   server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   html;
        index  index.html index.htm;  
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    location ~ \.json$ {
        proxy_pass http://localhost:8080;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

请求大神详细解答,比较急!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离鸿 2022-09-14 08:35:04

api为你的请求固定前缀,自行更换

location /api {
  proxy_pass  http://localhost:8080/api;
}

具体可参考 https://www.thinktxt.com/ngin...

童话 2022-09-14 08:35:04

设置反向代理

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文