changeset 4198:9ff4acd99289

Removed old warning that suggested to use "server_name_in_redirect off" (now the default) in place of no longer supported "server_name *".
author Ruslan Ermilov <ru@nginx.com>
date Wed, 12 Oct 2011 07:20:20 +0000
parents cf6a3467b5db
children 874a2f505e2a
files src/http/ngx_http_core_module.c
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/ngx_http_core_module.c	Tue Oct 11 18:10:49 2011 +0000
+++ b/src/http/ngx_http_core_module.c	Wed Oct 12 07:20:20 2011 +0000
@@ -3839,13 +3839,6 @@
                                &value[i]);
         }
 
-        if (value[i].len == 1 && ch == '*') {
-            ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
-                               "\"server_name *\" is unsupported, use "
-                               "\"server_name_in_redirect off\" instead");
-            return NGX_CONF_ERROR;
-        }
-
         sn = ngx_array_push(&cscf->server_names);
         if (sn == NULL) {
             return NGX_CONF_ERROR;