Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Бага в proxy_method
Здравствуйте, Уважаемый(-ая, -ое) Maxim Dounin!
>> Здравствуйте, Maxim.
>>
>> > А, нет, вру, должно быть всё нормально и без пробела, это
>> > действительно бага.
>>
>> > У тебя proxy_method задан на уровне http{}, да?
>>
>> Да, на уровне http{}.
MD> Патч.
Неправильный патч.
Правильно будет делать trim() и добавлять пробел всегда.
MD> # HG changeset patch
MD> # User Maxim Dounin <mdounin@xxxxxxxxxx>
MD> # Date 1358167486 -14400
MD> # Node ID d94906442d522529b6daf9c955cdb9a264755979
MD> # Parent 13c4c155f26f772b0bc1074a05298088d6499218
MD> Proxy: fixed proxy_method to always add space.
MD> Before the patch if proxy_method was specified at http{} level the code
MD> to add trailing space wasn't executed, resulting in incorrect requests
MD> to upstream.
MD> diff --git a/src/http/modules/ngx_http_proxy_module.c
b/src/http/modules/ngx_http_proxy_module.c
MD> --- a/src/http/modules/ngx_http_proxy_module.c
MD> +++ b/src/http/modules/ngx_http_proxy_module.c
MD> @@ -2353,7 +2353,7 @@ ngx_http_proxy_create_loc_conf(ngx_conf_
MD> * conf->upstream.store_lengths = NULL;
MD> * conf->upstream.store_values = NULL;
MD> *
- * conf->>method = NULL;
+ * conf->>method = { 0, NULL };
MD> * conf->headers_source = NULL;
MD> * conf->headers_set_len = NULL;
MD> * conf->headers_set = NULL;
MD> @@ -2652,10 +2652,11 @@ ngx_http_proxy_merge_loc_conf(ngx_conf_t
MD> #endif
- if (conf->>method.len == 0) {
- conf->>method = prev->method;
MD> -
MD> - } else {
MD> + ngx_conf_merge_str_value(conf->method, prev->method, "");
MD> +
+ if (conf->>method.len
+ && conf->>method.data[conf->method.len - 1] != ' ')
MD> + {
MD> conf->method.data[conf->method.len] = ' ';
MD> conf->method.len++;
MD> }
--
С уважением
Andrey Repin (hell-for-yahoo@xxxxxxxx) понедельник, 14.01.2013, <17:59>
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|