nginx选择错误的默认网站

参见英文答案 > Nginx includes config files not in order?                                    3个
首先,我知道我可以指定default_server来强制默认站点,但我想了解为什么Nginx不是简单地选择第一个定义的服务器为documented.

Nginx.conf的http部分结束时我有

include /etc/Nginx/conf.d/*.conf;
include /etc/Nginx/sites-enabled/*;

/etc/Nginx/conf.d/*.conf只是一些默认的代理配置和ssl配置

定义的网站是

000默认
example.com
zombo.com

默认站点指向本地目录和index.html,另外两个指向代理服务器.

000默认

server {
  listen   80;
  server_name  aaa-test;

  access_log  /var/log/Nginx/localhost.access.log;

  location / {
    root   /var/www/Nginx-default;
    index  index.html index.htm;
  }
}

example.com

server {

    server_name example.com *.example.com ;
    listen 80;

    location / {
        proxy_pass  http://10.245.0.19;
        proxy_redirect default;
    }

}

zombo.com

server {

    server_name zombo.com *.zombo.com ;
    listen 80;

    location / {
        proxy_pass  http://10.245.0.36;
        proxy_redirect default;
    }

}

但如果我浏览Nginx服务器IP,我会从example.com得到答案.我已经尝试重命名配置文件以不同的顺序加载它们,并始终将example.com作为默认值.即使我将其配置文件命名为zzz.com

文档说没有Host头的流量应该转到第一个虚拟主机,但我似乎无法做到这一点.

如果我删除example.com,则流量将转到默认主机,而不是zombo.com.

我真的很难过……

编辑:评论请求的信息

# ls -lU /etc/Nginx/sites-enabled
total 0
lrwxrwxrwx 1 root root 38 Oct  3 00:05 example.com -> /etc/Nginx/sites-available/example.com
lrwxrwxrwx 1 root root 34 Oct  3 00:05 000-default -> /etc/Nginx/sites-available/default
lrwxrwxrwx 1 root root 36 Oct  2 22:58 zombo.com -> /etc/Nginx/sites-available/zombo.com
最佳答案
Nginx正在查看第一个定义的服务器,但它不是您认为的那个.

如果运行ls -lU / etc / Nginx / sites-enabled,您将看到目录列表按照它在磁盘上显示的实际顺序,这是它们将被读取的顺序.这通常不是您期望的顺序.

当然,这是您可以明确定义default_server的一个原因.

相关文章

一、Linux下Nginx的安装 1.去官网 http://nginx.org/download/下载对应的Nginx安装包,推荐使...
一、空格:默认匹配、普通匹配 location / { root /home; } 二、= :精确匹配(表示匹配到 /home/resou...
``` nginx -c 配置文件路径 ``` ``` /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.con...
前言 nginx可所谓是如今最好用的软件级别的负载均衡了。通过nginx的高性能,并发能力强,占用内存下的特...
1.ngnix概念 Nginx是一款高性能的http 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器。由俄...
博客园从今天上午就开始报502错误 , 他的原因还不知道 , 暂时先说下我们遇到502的排查情况 最大的可能性...