连接到容器而不在 URL 中指定端口(nginx)

连接到容器而不在 URL 中指定端口(nginx)

我想通过 nginx 位置块连接到容器,但不使端口在大型应用程序的 URL 中可见,我当前的块是:

location ~"/name/(.*)/(.*)/([0-9])/"{
            set port $3;
            proxy_pass http://128.0.0.7:$port;
            proxy_header Host $host;
}

/name/(.*)/(.*)/([0-9])/我想用这个(.*)唯一的 id 而不是([0-9])端口来访问 url

相关内容