﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	uname	nginx_version
1224	Wildcard in server_name	gnought@…		"The following nginx config is regarded as invalid via {{{{ nginx -t }}}}. However the config will become valid if removing the 2nd server block.
Is the ""xxx*abc.com"" be valid in nginx conf?

{{{
pid nginx.pid;
events {}
http {  
  access_log off;
  server {
    server_name xxx*abc.com;
    location = /abc { return 200; }
  }
  ## START: Remove the following server block will make nginx valid ##
  server {
    server_name abc.com;
    location = /abc { return 200; }
  }
  ## END ##
}
}}}"	defect	closed	major		nginx-core	1.10.x	invalid	wildcard, server_name		Linux gnought-vm 4.9.13-muqss-xanmod19 #1 SMP Mon Feb 27 20:17:36 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux	"nginx version: nginx/1.10.2
built by gcc 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 
built with OpenSSL 1.0.2g  1 Mar 2016
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --without-http_memcached_module --with-http_realip_module --with-http_ssl_module --with-http_gunzip_module --with-http_stub_status_module --add-module=/usr/local/nginx_extra_module/ngx_http_consistent_hash-master --add-module=/usr/local/nginx_extra_module/ngx_http_dyups_module-master --add-module=/usr/local/nginx_extra_module/ngx_http_enhanced_memcached_module-master --add-module=/usr/local/nginx_extra_module/ngx_upstream_jdomain-master --add-module=/usr/local/nginx_extra_module/memc-nginx-module-master --add-module=/usr/local/nginx_extra_module/srcache-nginx-module-master --add-module=/usr/local/nginx_extra_module/headers-more-nginx-module-master"
