无法确定正在使用哪个 NGINX 配置文件

无法确定正在使用哪个 NGINX 配置文件

里面/etc/nginx/sites-available有一个配置文件,example其配置如下:

server {
    listen 443 ssl;

    server_name php1.example.com php2.example.com;

    ssl_certificate /etc/nginx/ssl/example.crt;
    ssl_certificate_key /etc/nginx/ssl/example.key;

    root /var/www/html/example/public;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; # Adjust the PHP version if needed
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }

    error_log  /var/log/nginx/example_error.log;
    access_log /var/log/nginx/example_access.log;
}

server {
    listen 80;

    server_name admin.php1.example.com;

    root /var/www/html/example/public;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; # Adjust the PHP version if needed
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }

    error_log  /var/log/nginx/example_error.log;
    access_log /var/log/nginx/example_access.log;
}

这为一个 PHP 网站提供服务,该网站的设置方式是为不同的子域连接到不同的数据库。我正在使用 Cloudflare,无法为多级子域设置 SSL admin.php1.example.com。我已将php1.example.comphp2.example.comphp3.example.com指向admin.php1.example.com我的服务器 IP,但未将其包含php3.example.com在配置文件中。

问题是,当我php3.example.com在浏览器中访问时,即使配置文件中没有配置,它也会加载网站。我无法弄清楚哪个配置文件正在用于为网站提供服务。

由于它按照预期在其他子域上运行,因此我忽略了它。

到目前为止,当我必须在同一台服务器上设置 Node.js 项目时。我编写了另一个配置文件,node-project.conf其配置如下:

server {
        listen 80;
        server_name node.example.com;

        # location / {
        #       proxy_pass http://localhost:4000;
        #       proxy_http_version 1.1;
        #       proxy_set_header Upgrade $http_upgrade;
        #       proxy_set_header Connection 'upgrade';
        #       proxy_set_header Host $host;
        #       proxy_cache_bypass $http_upgrade;
        # }

        location / {
                root /usr/share/nginx/html;
                index index.html index.htm;
        }
}

我正在尝试提供 NGINX 的默认欢迎页面,以测试我的新子域名是否node.example.com正确指向我的 IP。但是当我在浏览器中访问子域名时,我得到的是与 相同的 PHP 网站php3.example.com

我是这方面的新手,但对服务器管理充满热情。我想修复这个问题,并了解幕后发生的事情,这样我就可以成为一名更好的管理员。

我也是 Server Fault 的新手。我已尽力使问题尽可能详细,但如果有人想了解有关任何事情的更多信息,请告诉我。

在中sites-available,我有default以下配置:

server {
        listen 80 default_server;
        listen [::]:80 default_server;

        root /var/www/html;

        server_name _;

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

答案1

你可以使用nginx -T。在我的例子中它显示这个

$ nginx -T | grep "# config*"
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
# configuration file /etc/nginx/nginx.conf:
# configuration file /etc/nginx/mime.types:
# configuration file /etc/nginx/sites-enabled/default:

请记住,你需要符号链接到 sites-enabled 来激活 nginx 的 conf 文件并重新加载


你可以通过递归方式通过 /etc/nginx 查找,看看是否可以找到任何具有值 php3.example.com 的 conf 文件

grep -r "php3.example.com" /etc/nginx

或者仅通过 sites-enabled 和 sites-available

grep -r "php3.example.com" /etc/nginx/sites-enabled /etc/nginx/sites-available

您可以在主 nginx 配置 (/etc/nginx/nginx.conf) 中启用访问日志记录

http {
    # Other configurations...
log_format custom_format '$remote_addr - $remote_user [$time_local] "$request" '
                        '$status $body_bytes_sent "$http_referer" '
                        '"$http_user_agent" "$http_x_forwarded_for" '
                        'vhost:$server_name';

    # Enable logging
    access_log /var/log/nginx/access.log custom_format;
    error_log /var/log/nginx/error.log;

    # Other configurations...
}

然后,您可以通过这些日志查找是否有 php3.example.com 的匹配项

grep 'php3.example.com' /var/log/nginx/access.log

相关内容