Commit 264bc4c7 authored by Tollef Fog Heen's avatar Tollef Fog Heen

s/obj.cookie/obj.http.set-cookie/

parent f118ecf1
......@@ -33,7 +33,7 @@
*
* req.url == "/foo"
* req.url ~ ".iso" && obj.size > 10MB
* req.http.host ~ "web1.com" && obj.set-cookie ~ "USER=29293"
* req.http.host ~ "web1.com" && obj.http.set-cookie ~ "USER=29293"
*
* We make the "&&" mandatory from the start, leaving the syntax space
* for latter handling of "||" as well.
......
......@@ -306,7 +306,7 @@ Example: Ban all documents where the serving host is "example.com"
or "www.example.com", and where the Set-Cookie header received from
the backend contains "USERID=1663"::
req.http.host ~ "^(?i)(www\.)example.com$" && obj.set-cookie ~ "USERID=1663"
req.http.host ~ "^(?i)(www\.)example.com$" && obj.http.set-cookie ~ "USERID=1663"
SEE ALSO
========
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment