centos – 上游服务器中的Nginx http前缀

前端之家收集整理的这篇文章主要介绍了centos – 上游服务器中的Nginx http前缀前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用Nginx代理传递给两个docker容器.
这是我的上游conf文件
upstream api_servers {
  server http://192.168.49.4:49155;
  server http://192.168.49.4:49156;
}

这是我试图加载它:

Nginx: [emerg] invalid host in upstream "http://192.168.49.4:49155" in /etc/Nginx/conf.d/api_upstream.conf:3
Nginx: configuration file /etc/Nginx/Nginx.conf test Failed

一旦我删除了http://前缀,错误就会停止发生.这是为什么?

上游块是具有可选状态池和连接限制的服务器列表.必须在proxy_pass指令中指定用于加入这些服务器的协议.
upstream api_servers {
    server 192.168.49.4:49155;
    server 192.168.49.4:49156;
}

server {

    [ ... ]

    location /foo/ {
        proxy_pass http://api_servers/;
    }

}
原文链接:https://www.f2er.com/centos/373889.html

猜你在找的CentOS相关文章