nginx 无法正确提供子域名服务

nginx 无法正确提供子域名服务

我的 nginx.conf 几乎是默认配置,并添加了后备服务器块:

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

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

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    # fallback-server if host is not known
    server {
        listen 80 default_server;
        server_name _;
        return 404;
    }

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

该文件夹/etc/nginx/conf.d/是空的。

Sites-enabled 包含指向以下配置文件的符号链接:

server {  
    listen 80;
    server_name www.subdomain.example.com subdomain.example.com;
    root /var/www/subdomain;
    index index.html;   

    location / {
        try_files $uri $uri/ =404;
    }
}

问题是 nginx 始终默认使用后备服务器,即使对于带有 的请求也是如此subdomain.example.com

删除后备服务器会导致子域服务器服务所有请求,据我所知,这是默认的 nginx 行为。

这是我想扩展以服务多个子域的测试设置。为第二个子域添加第二台服务器也会导致只有一台服务器服务所有请求。

nginxaccess.log摘录(最近 2 个请求):

XX.XXX.XXX.XXX - - [17/Aug/2017:18:13:32 +0200] "GET / HTTP/1.1" 404 152 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1"
XX.XXX.XXX.XXX - - [17/Aug/2017:18:14:17 +0200] "GET / HTTP/1.1" 404 209 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36"

nginxerror.log摘录(最后 2 条)

2017/08/17 16:11:53 [notice] 3829#3829: signal process started
2017/08/17 16:32:10 [notice] 3914#3914: signal process started

我的问题:

  1. 我在这里遗漏了什么?
  2. 是不是我的子域名配置有误,比如提交了错误的主机?但是使用 Chrome 检查请求标头主机条目会显示正确的子域名 (subdomain.example.com),并且对其执行dig也会返回答案部分。

当然,我对此做了一些研究,但无法找出问题所在:

  • 这个问题-> 错误的听力指令:已检查。
  • 这个问题-> 配置错误的子域名:已检查(虽然这可能是问题所在,但我不知道如何进一步验证这一点)。
  • 这个问题-> 服务器块不在已启用站点中:已选中。
  • 这个问题-> 服务器块中没有 server_name:已检查。

更新

结果nginx -t

nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2017/08/18 08:03:51 [warn] 6200#6200: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:1
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
2017/08/18 08:03:51 [emerg] 6200#6200: open() "/run/nginx.pid" failed (13: Permission denied)
nginx: configuration file /etc/nginx/nginx.conf test failed

结果sudo nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

更新 2

不确定这是否相关。删除所有服务器阻止请求后,网站将subdomain.example.com出现结果503 Service Temporarily Unavailable。请求XX.XXX.XXX.XXX:80导致浏览器告诉我无法打开页面。

此外,我尝试在子域服务器块中提供不同的位置,这很有效。但是,我错误地使用root而不是配置了位置alias,这返回了默认的 nginx 页面/var/www/html,该页面没有设置为根目录或别名目录。这怎么可能呢?

相关内容