nginx 域名配置的疑惑

发布于 2022-09-12 22:55:27 字数 2645 浏览 22 评论 0

问题:我有 a.comb.com两个域名,这两个域名都解析绑定的同一个ip,
但是服务器的nginx配置没有配置b.com,只配置了a.com,这时候 浏览器访问b.com却能指向a.com的nginx配置

nginx.conf 文件配置详情

user  nginx;
worker_processes  1;

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


events {
    worker_connections  1024;
}


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

    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;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

/etc/nginx/conf.d目录下的a.com.conf

limit_req_zone $binary_remote_addr zone=req_one:32m rate=100r/s;
server {
    listen       80;
    listen       443 ssl;
    server_name  a.com;
    root  /home/wwwroot/a.com/public;

    ssl_certificate      /home/wwwroot/ssl/a.com.pem;
    ssl_certificate_key  /home/wwwroot/ssl/a.com.key;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;

    index index.html index.htm index.php;
        charset utf-8;
    
    location /ws {
                proxy_pass http://172.17.0.1:9004;
                # 转发websocket需要的设置
                proxy_set_header X-Real_IP $remote_addr;
                proxy_set_header Host $host;
                proxy_set_header X_Forward_For $proxy_add_x_forwarded_for;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection 'upgrade';
        }

        location / {
        limit_req zone=req_one burst=5 nodelay;
            try_files $uri $uri/ /index.php?$query_string;
        }
    location ~ \.php$ {
        fastcgi_pass   172.17.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_intercept_errors on;
        include        fastcgi_params;
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp3|wma)$ {
    try_files $uri /index.php;
        expires      30d;
    }

    location ~ .*\.(js|css)$ {
        try_files $uri /index.php;
        expires      12h;
    }
}

为什么只配置了a.com。浏览器访问b.com能指向a.com的项目

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冬天旳寂寞 2022-09-19 22:55:27

这不是正常吗?你没有配置b.com。。我现在把我的域名解析到baidu的ip,同样也能访问baidu啊。baidu也没有对我的域名进行配置。。懂?尝试配置一下,不通过ip访问。。

妄断弥空 2022-09-19 22:55:27

Nginx 没有配置 default_server 的情况下,默认就是会匹配到第一个域名

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文