comparison src/http/modules/ngx_http_proxy_module.c @ 386:1878e9c00f22 NGINX_0_6_37

nginx 0.6.37 *) Feature: Microsoft specific "AUTH LOGIN with User Name" mode support in mail proxy server. Thanks to Maxim Dounin. *) Bugfix: nginx could not be built on platforms different from i386, amd64, sparc, and ppc; the bug had appeared in 0.6.36.
author Igor Sysoev <http://sysoev.ru>
date Mon, 18 May 2009 00:00:00 +0400
parents 3ce4580ae286
children
comparison
equal deleted inserted replaced
385:842321c9fc84 386:1878e9c00f22
1897 if (prev->proxy_lengths) { 1897 if (prev->proxy_lengths) {
1898 conf->proxy_lengths = prev->proxy_lengths; 1898 conf->proxy_lengths = prev->proxy_lengths;
1899 conf->proxy_values = prev->proxy_values; 1899 conf->proxy_values = prev->proxy_values;
1900 } 1900 }
1901 1901
1902 #if (NGX_HTTP_SSL)
1903 if (conf->upstream.ssl == NULL) {
1904 conf->upstream.ssl = prev->upstream.ssl;
1905 }
1906 #endif
1907
1902 ngx_conf_merge_uint_value(conf->headers_hash_max_size, 1908 ngx_conf_merge_uint_value(conf->headers_hash_max_size,
1903 prev->headers_hash_max_size, 512); 1909 prev->headers_hash_max_size, 512);
1904 1910
1905 ngx_conf_merge_uint_value(conf->headers_hash_bucket_size, 1911 ngx_conf_merge_uint_value(conf->headers_hash_bucket_size,
1906 prev->headers_hash_bucket_size, 64); 1912 prev->headers_hash_bucket_size, 64);