如何从通配符域中排除特定子域(Nginx)

How to exclude a specific subdomain from wildcard domain (Nginx)

例如,我有一个域 example.com,网络应用程序将在用户注册时创建子域。

但我想创建一个测试环境,例如demo.example.com 将指向另一个项目。用户注册时,会有

我目前拥有的

| Name           | Type  | Value           |
|----------------|-------|-----------------|
| example.com.   | A     | 123.123.123.123 |
| *.example.com. | CNAME | example.com.    |

还有我的 nginx 配置

server {
    listen 80;

    root /var/www/example.com/public;
    index index.html index.htm index.php;
    server_name example.com *.example.com;

    location / {
       try_files $uri $uri/ /index.php?$query_string;
    }
    location ~ \.php$ {
        try_files $uri /index.php =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

如何创建测试环境1?

您需要创建一个子域 fqdn 为 server_name 的新服务器块,nginx 将遵循此优先顺序。

  1. 确切姓名
  2. 以星号开头的最长通配符名称,例如“*.example.org”
  3. 以星号结尾的最长通配符名称,例如“邮件。*”
  4. 第一个匹配的正则表达式(按照在配置文件中出现的顺序)

更多信息:http://nginx.org/en/docs/http/server_names.html