nginx 端口转发 (proxy_pass反向代理)

  • 第一种(访问IP转发到IP+端口)
    server{
      listen  9003;
      server_name  192.168.1.114;
      index  index.php index.html index.htm;
    
      location / {
         proxy_pass  http://127.0.0.1:9002;
      }
    }

    当访问192.168.1.114:9003 的时候, 就会转发到192.168.1.114的9002端口, 9002端口我配置的是PHPinfo(); 所以最终会显示PHPinfo的信息.

  • 第二种(访问域名转发到IP+端口去)
    server{
      listen 80;
      server_name  www.test1.top;
      index  index.php index.html index.htm;
    
      location / {
         proxy_pass  http://127.0.0.1;
      }
    }
    #这里有个奇怪的问题, 域名我使用test1.top就403, 完全搞不懂为什么, 加上www 就正常了, 有待解决

    访问www.test1.top 转发到192.168.1.114默认的nginx显示的页面, 同样可以加上端口比如: http://127.0.0.1:9002; 就跳转到PHPinfo页面

  • 第三种(访问IP转发到域名)
    server{
      listen 9003;
      server_name  192.168.1.114;
      index  index.php index.html index.htm;
    
      location / {
         proxy_pass  http://www.rubbish.top;
      }
    }
    #这种是配置文件直接报错, "host not found in upstream 'www.rubbish.top in ...'"

    更新尝试了一下转发到www.baidu.com, 是可以的, 那么应该就是转发的域名必须是外网能访问到才行. 所以配置文件才会报错

  • 第四种(访问域名转发到域名)
    server{
      listen 80;
      server_name  www.test1.top;
      index  index.php index.html index.htm;
    
      location / {
         proxy_pass  http://www.baidu.com;
      }
    }

    访问www.test1.top跳转到百度.

  • proxy_pass  配置的路径后面加 / 和 不加 / 的区别 :  https://blog.csdn.net/ainuser/article/details/80260144

转载于:https://www.cnblogs.com/bneglect/p/11528499.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>