@@ -34,15 +34,16 @@ Tarantool - https://hub.docker.com/r/tarantool/tarantool
34
34
* v2.3.2 - Production ready.
35
35
* v2.3.7 - Production ready.
36
36
* v2.4.0-beta - Beta.
37
+ * v2.4.6-rc1 - Stable.
37
38
38
39
## Content
39
40
----------
40
41
* [ Compilation and install] ( #compilation-and-install )
41
42
* [ REST] ( #rest )
42
43
* [ JSON] ( #json )
44
+ * [ HTTP headers and status] ( #HTTP-headers-and-status )
43
45
* [ Directives] ( #directives )
44
46
* [ tnt_pass] ( #tnt_pass )
45
- * [ HTTP headers and status] ( #HTTP-headers-andstatus )
46
47
* [ tnt_http_methods] ( #tnt_http_methods )
47
48
* [ tnt_http_rest_methods] ( #tnt_http_rest_methods )
48
49
* [ tnt_pass_http_request] ( #tnt_pass_http_request )
298
299
-------------
299
300
[ Back to content] ( #content )
300
301
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 )
327
302
328
303
# HTTP headers and status
329
304
-------------------------
@@ -425,6 +400,33 @@ Example
425
400
426
401
[ Back to content] ( #content )
427
402
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
+
428
430
tnt_http_methods
429
431
----------------
430
432
** syntax:** * tnt_http_methods post, put, patch, delete, all*
0 commit comments