@@ -34,15 +34,16 @@ Tarantool - https://hub.docker.com/r/tarantool/tarantool
3434* v2.3.2 - Production ready.
3535* v2.3.7 - Production ready.
3636* v2.4.0-beta - Beta.
37+ * v2.4.6-rc1 - Stable.
3738
3839## Content
3940----------
4041* [ Compilation and install] ( #compilation-and-install )
4142* [ REST] ( #rest )
4243* [ JSON] ( #json )
44+ * [ HTTP headers and status] ( #HTTP-headers-and-status )
4345* [ Directives] ( #directives )
4446 * [ tnt_pass] ( #tnt_pass )
45- * [ HTTP headers and status] ( #HTTP-headers-andstatus )
4647 * [ tnt_http_methods] ( #tnt_http_methods )
4748 * [ tnt_http_rest_methods] ( #tnt_http_rest_methods )
4849 * [ tnt_pass_http_request] ( #tnt_pass_http_request )
298299-------------
299300[ Back to content] ( #content )
300301
301- tnt_pass
302- --------
303- ** syntax:** * tnt_pass UPSTREAM*
304-
305- ** default:** * no*
306-
307- ** context:** * location*
308-
309- Specify the Tarantool server backend.
310-
311- ``` nginx
312-
313- upstream tnt_upstream {
314- 127.0.0.1:9999
315- };
316-
317- location = /tnt {
318- tnt_pass 127.0.0.1:9999;
319- }
320-
321- location = /tnt_next_location {
322- tnt_pass tnt_upstream;
323- }
324- ```
325-
326- [ Back to content] ( #content )
327302
328303# HTTP headers and status
329304-------------------------
@@ -425,6 +400,33 @@ Example
425400
426401[ Back to content] ( #content )
427402
403+ tnt_pass
404+ --------
405+ ** syntax:** * tnt_pass UPSTREAM*
406+
407+ ** default:** * no*
408+
409+ ** context:** * location*
410+
411+ Specify the Tarantool server backend.
412+
413+ ``` nginx
414+
415+ upstream tnt_upstream {
416+ 127.0.0.1:9999
417+ };
418+
419+ location = /tnt {
420+ tnt_pass 127.0.0.1:9999;
421+ }
422+
423+ location = /tnt_next_location {
424+ tnt_pass tnt_upstream;
425+ }
426+ ```
427+
428+ [ Back to content] ( #content )
429+
428430tnt_http_methods
429431----------------
430432** syntax:** * tnt_http_methods post, put, patch, delete, all*
0 commit comments