We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47dda9a commit 8bf2988Copy full SHA for 8bf2988
README.md
@@ -16,14 +16,17 @@ http {
16
init_by_lua_block {
17
require("ngx.ssl.session.ticket.key_rotation").init{
18
locks_shdict_name = "locks",
19
+
20
+ disable_shm_cache = false, -- default false
21
cache_shdict_name = "my_cache",
22
shm_cache_positive_ttl = 24 * 3600 * 1000, -- in ms
23
shm_cache_negative_ttl = 0, -- in ms
- disable_shm_cache = false, -- default false
- memc_key_prefix = "ticket-key/",
24
25
ticket_ttl = 24 * 3600, -- in sec
26
key_rotation_period = 3600, -- in sec
27
28
+ memc_key_prefix = "ticket-key/",
29
30
memc_host = "127.0.0.1",
31
memc_port = 11211,
32
memc_timeout = 500, -- in ms
0 commit comments