File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -2486,6 +2486,13 @@ SSL session resumption will happen and thus bypass the [ssl_certificate_by_lua*]
2486
2486
hook completely. In this case, NGINX also bypasses the [ ssl_session_store_by_lua_block] ( #ssl_session_store_by_lua )
2487
2487
hook, for obvious reasons.
2488
2488
2489
+ To easily test this hook locally with a modern web browser, you can temporarily put the following line
2490
+ in your https server block to disable the TLS session ticket support:
2491
+
2492
+ ssl_session_tickets off;
2493
+
2494
+ But do not forget to comment this line out before publishing your site to the world.
2495
+
2489
2496
If you are using the [ official pre-built packages] ( http://openresty.org/en/linux-packages.html ) for [ OpenResty] ( https://openresty.org/ )
2490
2497
1.11.2.1 or later, then everything should work out of the box.
2491
2498
@@ -2543,6 +2550,13 @@ is provided in the [ngx.ssl.session](https://github.com/openresty/lua-resty-core
2543
2550
Lua module shipped with the [ lua-resty-core] ( https://github.com/openresty/lua-resty-core#readme )
2544
2551
library.
2545
2552
2553
+ To easily test this hook locally with a modern web browser, you can temporarily put the following line
2554
+ in your https server block to disable the TLS session ticket support:
2555
+
2556
+ ssl_session_tickets off;
2557
+
2558
+ But do not forget to comment this line out before publishing your site to the world.
2559
+
2546
2560
This directive was first introduced in the ` v0.10.6 ` release.
2547
2561
2548
2562
[ Back to TOC] ( #directives )
Original file line number Diff line number Diff line change @@ -2093,6 +2093,13 @@ SSL session resumption will happen and thus bypass the [[#ssl_certificate_by_lua
2093
2093
hook completely. In this case, NGINX also bypasses the [[#ssl_session_store_by_lua* |ssl_session_store_by_lua_block ]]
2094
2094
hook, for obvious reasons.
2095
2095
2096
+ To easily test this hook locally with a modern web browser, you can temporarily put the following line
2097
+ in your https server block to disable the TLS session ticket support:
2098
+
2099
+ ssl_session_tickets off;
2100
+
2101
+ But do not forget to comment this line out before publishing your site to the world.
2102
+
2096
2103
If you are using the [official pre-built packages ](http://openresty.org/en/linux-packages.html) for [OpenResty](https://openresty.org/)
2097
2104
1.11.2.1 or later, then everything should work out of the box.
2098
2105
@@ -2144,6 +2151,13 @@ is provided in the [ngx.ssl.session](https://github.com/openresty/lua-resty-core
2144
2151
Lua module shipped with the [lua-resty-core](https://github.com/openresty/lua-resty-core#readme)
2145
2152
library.
2146
2153
2154
+ To easily test this hook locally with a modern web browser, you can temporarily put the following line
2155
+ in your https server block to disable the TLS session ticket support:
2156
+
2157
+ ssl_session_tickets off;
2158
+
2159
+ But do not forget to comment this line out before publishing your site to the world.
2160
+
2147
2161
This directive was first introduced in the <code>v0.10.6 </code> release.
2148
2162
2149
2163
== ssl_session_store_by_lua_file ==
You can’t perform that action at this time.
0 commit comments