例如,我有一个域 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?
答案 0 :(得分:2)
您需要使用子域fqdn创建一个新的服务器块作为server_name,nginx将遵循此优先顺序。