美文网首页
nginx 配置nodejs的后端代理

nginx 配置nodejs的后端代理

作者: YoungEvita | 来源:发表于2018-02-27 20:09 被阅读0次

    1、vim /etc/nginx/conf.d/default.conf
    2、server {

           listen 80;
           server_name whalefalldeep.com;
           location /api {  #接口都是以 api/ 命名
                  proxy_pass http://127.0.0.1:3000 # 后端启动服务
          }
    

    }

    相关文章

      网友评论

          本文标题:nginx 配置nodejs的后端代理

          本文链接:https://www.haomeiwen.com/subject/jfamxftx.html