在虚拟机上安装了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”