将https请求的一部分重定向到另一个端口

时间:2019-02-04 17:48:02

标签: nginx

在虚拟机上安装了Nginx 我需要从443端口重定向请求的一部分。我创建文件/etc/nginx/conf.d/example.conf

这是我的example.conf

    server{
      listen   443;
      location /findByFId {
            proxy_pass        http://xx.xxx.xx.xx:4444/;
            proxy_redirect     off;
      }
    }

我将ip替换为“ x”

0 个答案:

没有答案