From: Igor Sysoev Date: Tue, 28 Sep 2010 06:50:52 +0000 (+0000) Subject: nginx uses SSL mode for a listen socket with any option set, X-Git-Tag: release-0.8.52~1 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=bfec9887cea00361e670e10da4862bc036437509;p=nginx.git nginx uses SSL mode for a listen socket with any option set, the bug has been introduced in r3765 --- diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 58fc7afe5..4ecd50ce8 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1274,7 +1274,7 @@ ngx_http_add_addresses(ngx_conf_t *cf, ngx_http_core_srv_conf_t *cscf, default_server = addr[i].opt.default_server; #if (NGX_HTTP_SSL) - ssl = lsopt->ssl || addr[i].opt.set; + ssl = lsopt->ssl || addr[i].opt.ssl; #endif if (lsopt->set) {