• 第一种(访问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
  • 配置nginx的proxy_pass访问rubbish.test.com转发到quick.test.com, nginx的proxy_pass之所以会丢失post参数, 现在看来应该是因为转发给了外部url, 而不是内部转发, 内部转发的时候, 并没有丢失?