Welcome! Log In Create A New Profile

Advanced

[PATCH] Corrected syntax of ssl_conf_command and friends

Sergey Kandaurov
June 20, 2022 03:34PM
# HG changeset patch
# User Sergey Kandaurov <pluknet@nginx.com>
# Date 1655753604 -14400
# Mon Jun 20 23:33:24 2022 +0400
# Node ID 3e1af31b0ecd9e0ae5a8a93a15ff15cc0b1f98f6
# Parent 53734009b0c36276e66792e23180ee9665c95419
Corrected syntax of ssl_conf_command and friends.

Each directive takes exactly two arguments: command name and value.
The parameter names follow SSL_CONF_cmd(3) documentation of OpenSSL 3.0.

diff --git a/xml/en/docs/http/ngx_http_grpc_module.xml b/xml/en/docs/http/ngx_http_grpc_module.xml
--- a/xml/en/docs/http/ngx_http_grpc_module.xml
+++ b/xml/en/docs/http/ngx_http_grpc_module.xml
@@ -10,7 +10,7 @@
<module name="Module ngx_http_grpc_module"
link="/en/docs/http/ngx_http_grpc_module.html"
lang="en"
- rev="7">
+ rev="8">

<section id="summary">

@@ -535,7 +535,7 @@ The full list can be viewed using the


<directive name="grpc_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/en/docs/http/ngx_http_proxy_module.xml b/xml/en/docs/http/ngx_http_proxy_module.xml
--- a/xml/en/docs/http/ngx_http_proxy_module.xml
+++ b/xml/en/docs/http/ngx_http_proxy_module.xml
@@ -10,7 +10,7 @@
<module name="Module ngx_http_proxy_module"
link="/en/docs/http/ngx_http_proxy_module.html"
lang="en"
- rev="74">
+ rev="75">

<section id="summary">

@@ -1995,7 +1995,7 @@ The full list can be viewed using the


<directive name="proxy_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/en/docs/http/ngx_http_ssl_module.xml b/xml/en/docs/http/ngx_http_ssl_module.xml
--- a/xml/en/docs/http/ngx_http_ssl_module.xml
+++ b/xml/en/docs/http/ngx_http_ssl_module.xml
@@ -10,7 +10,7 @@
<module name="Module ngx_http_ssl_module"
link="/en/docs/http/ngx_http_ssl_module.html"
lang="en"
- rev="57">
+ rev="58">

<section id="summary">

@@ -297,7 +297,7 @@ directive can be used.


<directive name="ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/en/docs/http/ngx_http_uwsgi_module.xml b/xml/en/docs/http/ngx_http_uwsgi_module.xml
--- a/xml/en/docs/http/ngx_http_uwsgi_module.xml
+++ b/xml/en/docs/http/ngx_http_uwsgi_module.xml
@@ -10,7 +10,7 @@
<module name="Module ngx_http_uwsgi_module"
link="/en/docs/http/ngx_http_uwsgi_module.html"
lang="en"
- rev="48">
+ rev="49">

<section id="summary">

@@ -1445,7 +1445,7 @@ The full list can be viewed using the


<directive name="uwsgi_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/en/docs/mail/ngx_mail_ssl_module.xml b/xml/en/docs/mail/ngx_mail_ssl_module.xml
--- a/xml/en/docs/mail/ngx_mail_ssl_module.xml
+++ b/xml/en/docs/mail/ngx_mail_ssl_module.xml
@@ -10,7 +10,7 @@
<module name="Module ngx_mail_ssl_module"
link="/en/docs/mail/ngx_mail_ssl_module.html"
lang="en"
- rev="24">
+ rev="25">

<section id="summary">

@@ -239,7 +239,7 @@ directive can be used.


<directive name="ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>mail</context>
<context>server</context>
diff --git a/xml/en/docs/stream/ngx_stream_proxy_module.xml b/xml/en/docs/stream/ngx_stream_proxy_module.xml
--- a/xml/en/docs/stream/ngx_stream_proxy_module.xml
+++ b/xml/en/docs/stream/ngx_stream_proxy_module.xml
@@ -9,7 +9,7 @@
<module name="Module ngx_stream_proxy_module"
link="/en/docs/stream/ngx_stream_proxy_module.html"
lang="en"
- rev="29">
+ rev="30">

<section id="summary">

@@ -448,7 +448,7 @@ The full list can be viewed using the


<directive name="proxy_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>stream</context>
<context>server</context>
diff --git a/xml/en/docs/stream/ngx_stream_ssl_module.xml b/xml/en/docs/stream/ngx_stream_ssl_module.xml
--- a/xml/en/docs/stream/ngx_stream_ssl_module.xml
+++ b/xml/en/docs/stream/ngx_stream_ssl_module.xml
@@ -9,7 +9,7 @@
<module name="Module ngx_stream_ssl_module"
link="/en/docs/stream/ngx_stream_ssl_module.html"
lang="en"
- rev="29">
+ rev="30">

<section id="summary">

@@ -254,7 +254,7 @@ directive can be used.


<directive name="ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>stream</context>
<context>server</context>
diff --git a/xml/en/docs/stream/ngx_stream_zone_sync_module.xml b/xml/en/docs/stream/ngx_stream_zone_sync_module.xml
--- a/xml/en/docs/stream/ngx_stream_zone_sync_module.xml
+++ b/xml/en/docs/stream/ngx_stream_zone_sync_module.xml
@@ -9,7 +9,7 @@
<module name="Module ngx_stream_zone_sync_module"
link="/en/docs/stream/ngx_stream_zone_sync_module.html"
lang="en"
- rev="6">
+ rev="7">

<section id="summary">

@@ -321,7 +321,7 @@ The full list can be viewed using the


<directive name="zone_sync_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>option</value> <value>value</value></syntax>
<default/>
<context>stream</context>
<context>server</context>
diff --git a/xml/ru/docs/http/ngx_http_grpc_module.xml b/xml/ru/docs/http/ngx_http_grpc_module.xml
--- a/xml/ru/docs/http/ngx_http_grpc_module.xml
+++ b/xml/ru/docs/http/ngx_http_grpc_module.xml
@@ -10,7 +10,7 @@
<module name="Модуль ngx_http_grpc_module"
link="/ru/docs/http/ngx_http_grpc_module.html"
lang="ru"
- rev="7">
+ rev="8">

<section id="summary">

@@ -534,7 +534,7 @@ grpc_set_header Accept-Encoding "";


<directive name="grpc_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/ru/docs/http/ngx_http_proxy_module.xml b/xml/ru/docs/http/ngx_http_proxy_module.xml
--- a/xml/ru/docs/http/ngx_http_proxy_module.xml
+++ b/xml/ru/docs/http/ngx_http_proxy_module.xml
@@ -10,7 +10,7 @@
<module name="Модуль ngx_http_proxy_module"
link="/ru/docs/http/ngx_http_proxy_module.html"
lang="ru"
- rev="74">
+ rev="75">

<section id="summary">

@@ -1996,7 +1996,7 @@ proxy_set_header Accept-Encoding "";


<directive name="proxy_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/ru/docs/http/ngx_http_ssl_module.xml b/xml/ru/docs/http/ngx_http_ssl_module.xml
--- a/xml/ru/docs/http/ngx_http_ssl_module.xml
+++ b/xml/ru/docs/http/ngx_http_ssl_module.xml
@@ -10,7 +10,7 @@
<module name="Модуль ngx_http_ssl_module"
link="/ru/docs/http/ngx_http_ssl_module.html"
lang="ru"
- rev="57">
+ rev="58">

<section id="summary">

@@ -300,7 +300,7 @@ PEM, которые используются для


<directive name="ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/ru/docs/http/ngx_http_uwsgi_module.xml b/xml/ru/docs/http/ngx_http_uwsgi_module.xml
--- a/xml/ru/docs/http/ngx_http_uwsgi_module.xml
+++ b/xml/ru/docs/http/ngx_http_uwsgi_module.xml
@@ -10,7 +10,7 @@
<module name="Модуль ngx_http_uwsgi_module"
link="/ru/docs/http/ngx_http_uwsgi_module.html"
lang="ru"
- rev="48">
+ rev="49">

<section id="summary">

@@ -1441,7 +1441,7 @@ uwsgi-сервер.


<directive name="uwsgi_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>http</context>
<context>server</context>
diff --git a/xml/ru/docs/mail/ngx_mail_ssl_module.xml b/xml/ru/docs/mail/ngx_mail_ssl_module.xml
--- a/xml/ru/docs/mail/ngx_mail_ssl_module.xml
+++ b/xml/ru/docs/mail/ngx_mail_ssl_module.xml
@@ -10,7 +10,7 @@
<module name="Модуль ngx_mail_ssl_module"
link="/ru/docs/mail/ngx_mail_ssl_module.html"
lang="ru"
- rev="24">
+ rev="25">

<section id="summary">

@@ -241,7 +241,7 @@ PEM, которые используются для


<directive name="ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>mail</context>
<context>server</context>
diff --git a/xml/ru/docs/stream/ngx_stream_proxy_module.xml b/xml/ru/docs/stream/ngx_stream_proxy_module.xml
--- a/xml/ru/docs/stream/ngx_stream_proxy_module.xml
+++ b/xml/ru/docs/stream/ngx_stream_proxy_module.xml
@@ -9,7 +9,7 @@
<module name="Модуль ngx_stream_proxy_module"
link="/ru/docs/stream/ngx_stream_proxy_module.html"
lang="ru"
- rev="29">
+ rev="30">

<section id="summary">

@@ -447,7 +447,7 @@ Cессия завершится после отправки всех принятых датаграмм


<directive name="proxy_ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>stream</context>
<context>server</context>
diff --git a/xml/ru/docs/stream/ngx_stream_ssl_module.xml b/xml/ru/docs/stream/ngx_stream_ssl_module.xml
--- a/xml/ru/docs/stream/ngx_stream_ssl_module.xml
+++ b/xml/ru/docs/stream/ngx_stream_ssl_module.xml
@@ -9,7 +9,7 @@
<module name="Модуль ngx_stream_ssl_module"
link="/ru/docs/stream/ngx_stream_ssl_module.html"
lang="ru"
- rev="29">
+ rev="30">

<section id="summary">

@@ -257,7 +257,7 @@ PEM, которые используются для


<directive name="ssl_conf_command">
-<syntax><value>command</value> ...</syntax>
+<syntax><value>параметр</value> <value>значение</value></syntax>
<default/>
<context>stream</context>
<context>server</context>
_______________________________________________
nginx-devel mailing list -- nginx-devel@nginx.org
To unsubscribe send an email to nginx-devel-leave@nginx.org
Subject Author Views Posted

[PATCH] Corrected syntax of ssl_conf_command and friends

Sergey Kandaurov 427 June 20, 2022 03:34PM

Re: [PATCH] Corrected syntax of ssl_conf_command and friends

Maxim Dounin 97 June 20, 2022 05:20PM

Re: [PATCH] Corrected syntax of ssl_conf_command and friends

Sergey Kandaurov 130 June 23, 2022 06:04AM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 216
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready