@@ -1672,6 +1672,8 @@ For example,
1672
1672
}
1673
1673
```
1674
1674
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
+
1675
1677
This directive was first introduced in the ` v0.10.18 ` release.
1676
1678
1677
1679
[ 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
3154
3156
3155
3157
Several ` lua_ssl_conf_command ` directives can be specified on the same level:
3156
3158
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;
3160
3163
```
3161
3164
3162
3165
Configuration 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
3165
3168
3166
3169
This directive was first introduced in the ` v0.10.21 ` release.
3167
3170
3171
+
3172
+
3168
3173
[ Back to TOC] ( #directives )
3169
3174
3170
3175
lua_http10_buffering
@@ -8405,7 +8410,7 @@ ngx.timer.at
8405
8410
8406
8411
** syntax:** * hdl, err = ngx.timer.at(delay, callback, user_arg1, user_arg2, ...)*
8407
8412
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* ; *
8409
8414
8410
8415
Creates an Nginx timer with a user callback function as well as optional user arguments.
8411
8416
@@ -8548,7 +8553,7 @@ ngx.timer.every
8548
8553
8549
8554
** syntax:** * hdl, err = ngx.timer.every(delay, callback, user_arg1, user_arg2, ...)*
8550
8555
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* ; *
8552
8557
8553
8558
Similar to the [ ngx.timer.at] ( #ngxtimerat ) API function, but
8554
8559
0 commit comments