3

是否可以从 Cookie 中写入密钥“uuid”的 nginx 访问日志值以获取服务器响应(标题:Set-Cookie)?

$cookie_uuid - 返回发送客户端的 uuid $sent_http_set_cookie - 返回整个标头 Set-Cookie: 'uuid=897587e7-a733-422f-9daa-b3105a5895aa; 域=域.com;路径=/; expires=Tue, 09-Aug-2033 01:17:54 GMT',但我只需要保存键 'uuid' 的值

谢谢

4

1 回答 1

3
map $sent_http_set_cookie $resp_uuid {
    ~*uuid=(?<u>[0-9a-f-]+) $u;
}

参考:

于 2013-08-10T09:11:02.623 回答