@@ -1672,6 +1672,8 @@ For example,
16721672 }
16731673```
16741674
1675+ It's not allowed to create a timer (even a 0-delay timer) here since it runs after all timers have been processed.
1676+
16751677This directive was first introduced in the ` v0.10.18 ` release.
16761678
16771679[ Back to TOC] ( #directives )
@@ -3154,9 +3156,10 @@ The directive is supported when using OpenSSL 1.0.2 or higher and nginx 1.19.4 o
31543156
31553157Several ` lua_ssl_conf_command ` directives can be specified on the same level:
31563158
3157- ```
3158- lua_ssl_conf_command Options PrioritizeChaCha;
3159- lua_ssl_conf_command Ciphersuites TLS_CHACHA20_POLY1305_SHA256;
3159+ ``` nginx
3160+
3161+ lua_ssl_conf_command Options PrioritizeChaCha;
3162+ lua_ssl_conf_command Ciphersuites TLS_CHACHA20_POLY1305_SHA256;
31603163```
31613164
31623165Configuration commands are applied after OpenResty own configuration for SSL, so they can be used to override anything set by OpenResty.
@@ -3165,6 +3168,8 @@ Note though that configuring OpenSSL directly with `lua_ssl_conf_command` might
31653168
31663169This directive was first introduced in the ` v0.10.21 ` release.
31673170
3171+
3172+
31683173[ Back to TOC] ( #directives )
31693174
31703175lua_http10_buffering
@@ -8405,7 +8410,7 @@ ngx.timer.at
84058410
84068411** syntax:** * hdl, err = ngx.timer.at(delay, callback, user_arg1, user_arg2, ...)*
84078412
8408- ** context:** * init_worker_by_lua* ; , set_by_lua* ; , rewrite_by_lua* ; , access_by_lua* ; , content_by_lua* ; , header_filter_by_lua* ; , body_filter_by_lua* ; , log_by_lua* ; , ngx.timer.* ; , balancer_by_lua* ; , ssl_certificate_by_lua* ; , ssl_session_fetch_by_lua* ; , ssl_session_store_by_lua* ; , exit_worker_by_lua &# 42 ; *
8413+ ** context:** * init_worker_by_lua* ; , set_by_lua* ; , rewrite_by_lua* ; , access_by_lua* ; , content_by_lua* ; , header_filter_by_lua* ; , body_filter_by_lua* ; , log_by_lua* ; , ngx.timer.* ; , balancer_by_lua* ; , ssl_certificate_by_lua* ; , ssl_session_fetch_by_lua* ; , ssl_session_store_by_lua* ; *
84098414
84108415Creates an Nginx timer with a user callback function as well as optional user arguments.
84118416
@@ -8548,7 +8553,7 @@ ngx.timer.every
85488553
85498554** syntax:** * hdl, err = ngx.timer.every(delay, callback, user_arg1, user_arg2, ...)*
85508555
8551- ** context:** * init_worker_by_lua* ; , set_by_lua* ; , rewrite_by_lua* ; , access_by_lua* ; , content_by_lua* ; , header_filter_by_lua* ; , body_filter_by_lua* ; , log_by_lua* ; , ngx.timer.* ; , balancer_by_lua* ; , ssl_certificate_by_lua* ; , ssl_session_fetch_by_lua* ; , ssl_session_store_by_lua* ; , exit_worker_by_lua &# 42 ; *
8556+ ** context:** * init_worker_by_lua* ; , set_by_lua* ; , rewrite_by_lua* ; , access_by_lua* ; , content_by_lua* ; , header_filter_by_lua* ; , body_filter_by_lua* ; , log_by_lua* ; , ngx.timer.* ; , balancer_by_lua* ; , ssl_certificate_by_lua* ; , ssl_session_fetch_by_lua* ; , ssl_session_store_by_lua* ; *
85528557
85538558Similar to the [ ngx.timer.at] ( #ngxtimerat ) API function, but
85548559
0 commit comments