comparison src/http/ngx_http_core_module.c @ 404:a094317ba307 NGINX_0_7_14

nginx 0.7.14 *) Change: now the ssl_certificate and ssl_certificate_key directives have not default values. *) Feature: the "listen" directive supports the "ssl" parameter. *) Feature: now nginx takes into account a time zone change while reconfiguration on FreeBSD and Linux. *) Bugfix: the "listen" directive parameters such as "backlog", "rcvbuf", etc. were not set, if a default server was not the first one. *) Bugfix: if URI part captured by a "rewrite" directive was used as a query string, then the query string was not escaped. *) Bugfix: configuration file validity test improvements.
author Igor Sysoev <http://sysoev.ru>
date Mon, 01 Sep 2008 00:00:00 +0400
parents 6ebbca3d5ed7
children 79c5df00501e
comparison
equal deleted inserted replaced
403:d46814b99ca0 404:a094317ba307
3079 "on this platform, ignored"); 3079 "on this platform, ignored");
3080 #endif 3080 #endif
3081 continue; 3081 continue;
3082 } 3082 }
3083 3083
3084 if (ngx_strcmp(value[n].data, "ssl") == 0) {
3085 #if (NGX_HTTP_SSL)
3086 ls->conf.ssl = 1;
3087 continue;
3088 #else
3089 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
3090 "the \"ssl\" parameter requires "
3091 "ngx_http_ssl_module");
3092 return NGX_CONF_ERROR;
3093 #endif
3094 }
3095
3084 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 3096 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
3085 "the invalid \"%V\" parameter", &value[n]); 3097 "the invalid \"%V\" parameter", &value[n]);
3086 return NGX_CONF_ERROR; 3098 return NGX_CONF_ERROR;
3087 } 3099 }
3088 3100