我正在尝试通过配置文件将 NGINX 直接流量连接到我的应用程序的不同部分,但我一生都无法弄清楚。这是我当前的设置:
http-service (loadbalancer)
NGINX (port 80)
website-service (10.27.246.107, port 8000, targetPort 8000, selector 'run: website')
website (label 'run: website', containerPort 8000)
NGINX Conf
upstream website{
server 10.27.246.107:8000
}
这是目前使用 containerPort 80 的普通 nginx pod。
我会以正确的方式解决这个问题吗?