comparison xml/en/docs/http/ngx_http_proxy_module.xml @ 2142:ca7568f67dee

Sorted directives alphabetically.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 10 Apr 2018 18:39:34 +0300
parents a9a9a052b5bd
children d765ffffd08c
comparison
equal deleted inserted replaced
2141:10751277a8ad 2142:ca7568f67dee
1961 </para> 1961 </para>
1962 1962
1963 </directive> 1963 </directive>
1964 1964
1965 1965
1966 <directive name="proxy_ssl_server_name">
1967 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1968 <default>off</default>
1969 <context>http</context>
1970 <context>server</context>
1971 <context>location</context>
1972 <appeared-in>1.7.0</appeared-in>
1973
1974 <para>
1975 Enables or disables passing of the server name through
1976 <link url="http://en.wikipedia.org/wiki/Server_Name_Indication">TLS
1977 Server Name Indication extension</link> (SNI, RFC 6066)
1978 when establishing a connection with the proxied HTTPS server.
1979 </para>
1980
1981 </directive>
1982
1983
1984 <directive name="proxy_ssl_session_reuse">
1985 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1986 <default>on</default>
1987 <context>http</context>
1988 <context>server</context>
1989 <context>location</context>
1990
1991 <para>
1992 Determines whether SSL sessions can be reused when working with
1993 the proxied server.
1994 If the errors
1995 “<literal>SSL3_GET_FINISHED:digest check failed</literal>”
1996 appear in the logs, try disabling session reuse.
1997 </para>
1998
1999 </directive>
2000
2001
2002 <directive name="proxy_ssl_protocols"> 1966 <directive name="proxy_ssl_protocols">
2003 <syntax> 1967 <syntax>
2004 [<literal>SSLv2</literal>] 1968 [<literal>SSLv2</literal>]
2005 [<literal>SSLv3</literal>] 1969 [<literal>SSLv3</literal>]
2006 [<literal>TLSv1</literal>] 1970 [<literal>TLSv1</literal>]
2013 <context>location</context> 1977 <context>location</context>
2014 <appeared-in>1.5.6</appeared-in> 1978 <appeared-in>1.5.6</appeared-in>
2015 1979
2016 <para> 1980 <para>
2017 Enables the specified protocols for requests to a proxied HTTPS server. 1981 Enables the specified protocols for requests to a proxied HTTPS server.
1982 </para>
1983
1984 </directive>
1985
1986
1987 <directive name="proxy_ssl_server_name">
1988 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1989 <default>off</default>
1990 <context>http</context>
1991 <context>server</context>
1992 <context>location</context>
1993 <appeared-in>1.7.0</appeared-in>
1994
1995 <para>
1996 Enables or disables passing of the server name through
1997 <link url="http://en.wikipedia.org/wiki/Server_Name_Indication">TLS
1998 Server Name Indication extension</link> (SNI, RFC 6066)
1999 when establishing a connection with the proxied HTTPS server.
2000 </para>
2001
2002 </directive>
2003
2004
2005 <directive name="proxy_ssl_session_reuse">
2006 <syntax><literal>on</literal> | <literal>off</literal></syntax>
2007 <default>on</default>
2008 <context>http</context>
2009 <context>server</context>
2010 <context>location</context>
2011
2012 <para>
2013 Determines whether SSL sessions can be reused when working with
2014 the proxied server.
2015 If the errors
2016 “<literal>SSL3_GET_FINISHED:digest check failed</literal>”
2017 appear in the logs, try disabling session reuse.
2018 </para> 2018 </para>
2019 2019
2020 </directive> 2020 </directive>
2021 2021
2022 2022