nginx 配置简单反向代理

时间:2019-10-10 20:29:50   收藏:0   阅读:85

假设端口号是 3000

 

server {
  listen 80;
  server_name your.domain;
  location / {
    proxy_pass              http://127.0.0.1:3000/;
    proxy_set_header        Host $host;
  }
}

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!