log cache key

This commit is contained in:
Karol Wypchlo 2021-06-01 12:46:47 +02:00
parent 9c4f9c8300
commit f59d00e172
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ server {
header_filter_by_lua_block {
if ngx.var.skylink_v1 ~= ngx.var.skylink_v2 then
if ngx.header.location then
ngx.header.location = ngx.header.location:gsub("^" .. ngx.var.skylink_v1, ngx.var.skylink_v2)
ngx.header.location = ngx.header.location:gsub(ngx.var.skylink_v1, ngx.var.skylink_v2)
end
ngx.header["Skynet-Skylink"] = ngx.var.skylink_v2
end