Skip to content

v2.5-rc1

Compare
Choose a tag to compare
@dedok dedok released this 17 Aug 22:24
· 57 commits to master since this release

New features

  1. tnt_method can work with nginx's variables, here is a short example:
location ~ /api/([-_a-zA-Z0-9/]+)/ {
    tnt_method $1;
    tnt_pass backend:3113;
}
  1. tnt_pass_http_request has a new option, it's parse_urlencoded. This option make nginx parse incoming x-www-urlencoded data into the Lua table. Here is details: https://github.com/tarantool/nginx_upstream_module#tnt_pass_http_request

  2. tnt_set_header, it's a new option. it allows redefining or appending fields to the request header passed to the tarantool proxied server. The value can contain text, variables, and their combinations.