NGINX 作为 IIS Web 服务器的负载均衡器

NGINX 作为 IIS Web 服务器的负载均衡器

我正在尝试为两个 IIS Web 服务器设置一个基于 NGINX 的简单软件负载均衡器。下面是我为负载平衡创建的 NGINX 配置文件:

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    #####
    # Definition von Load Balancing Cluster fur Share Point Farm
    ######

    upstream SPcluster {
        ip_hash;
        server 172.22.1.134:80 weight=10 max_fails=3 fail_timeout=15;

        server 172.22.1.133:80 weight=10 max_fails=3 fail_timeout=15;            
        }

    server {
        listen 172.22.9.100:80;
        location / {
           proxy_pass http://SPcluster;
           }
        }


    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    keepalive_timeout  65;
    include /etc/nginx/conf.d/*.conf;

}


error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}

问题是,当我尝试通过 Web 浏览器访问负载均衡器的 IP 时出现以下错误:

‘/’应用程序中的服务器错误。

找不到资源。描述:HTTP 404。您正在寻找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。请检查以下 URL 并确保其拼写正确。

请求的 URL:/SitePages/Homepage.aspx

我的配置有什么问题?为什么 nginx 服务器尝试在负载均衡器服务器上查找 html 文件,而不将请求重定向到实际可以提供这些文件的 Web 服务器?

答案1

尝试将其包含在您的 proxy_pass 行下:

 proxy_set_header Host $http_host;

相关内容