Nginx 配置泛域名
2015-08-24 by dongnan
目标
为 Nginx虚拟主机配置域名下的全部二级子域名。
环境
系统: CentOS 6.6 amd64
版本: Nginx 1.6.x
配置
cat default.conf
server
{
listen 80;
server_name ywwd.net *.ywwd.net; # 注意*
index index.php index.shtml index.html;
root /var/www/html/;
#...省略
}