comparison xml/en/docs/http/ngx_http_upstream_module.xml @ 1561:ed420c318557

Updated docs for the upcoming NGINX Plus release.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 10 Sep 2015 15:50:32 +0300
parents 627a9309011c
children 201bf8fa69e5
comparison
equal deleted inserted replaced
1560:dad3af7a1019 1561:ed420c318557
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_upstream_module" 10 <module name="Module ngx_http_upstream_module"
11 link="/en/docs/http/ngx_http_upstream_module.html" 11 link="/en/docs/http/ngx_http_upstream_module.html"
12 lang="en" 12 lang="en"
13 rev="41"> 13 rev="42">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_upstream_module</literal> module 18 The <literal>ngx_http_upstream_module</literal> module
508 the <literal>keepalive</literal> directive. 508 the <literal>keepalive</literal> directive.
509 </note> 509 </note>
510 510
511 <note> 511 <note>
512 SCGI and uwsgi protocols do not have a notion of keepalive connections. 512 SCGI and uwsgi protocols do not have a notion of keepalive connections.
513 </note>
514 </para>
515
516 </directive>
517
518
519 <directive name="ntlm">
520 <syntax/>
521 <default/>
522 <context>upstream</context>
523 <appeared-in>1.9.2</appeared-in>
524
525 <para>
526 Allows proxying requests with
527 <link url="https://en.wikipedia.org/wiki/Integrated_Windows_Authentication">NTLM
528 Authentication</link>.
529 The upstream connection is bound to the client connection
530 once the client sends a request with the <header>Authorization</header>
531 header field value
532 starting with “<literal>Negotiate</literal>” or “<literal>NTLM</literal>”.
533 Further client requests will be proxied through the same upstream connection,
534 keeping the authentication context.
535 </para>
536
537 <para>
538 <note>
539 This directive is available as part of our
540 <commercial_version>commercial subscription</commercial_version>.
513 </note> 541 </note>
514 </para> 542 </para>
515 543
516 </directive> 544 </directive>
517 545