Strange Issue with cache and logged in users
Pinakee BIswas
pinakee at waltzz.com
Thu May 26 14:54:48 CEST 2016
Hi,
I am facing a strange problem with Varnish cache. Ours is an ecommerce
site wherein users can visit with or without logging in. I have written
the VCL to unset cookies when user not logged in.
The scenario is user logs in and then logs out. When the user logs out,
Varnish is still delivering logged in pages to the user which is strange
as the requests for logged in users go all the way to the backend and
the pages are not supposed to get cached. I have been looking into this
since quite some time and still not able to figure out the reason.
Would appreciate any help.
Thanks,
Pinakee
PFA the output from varnishlog.
Following is the VCL code:
sub vcl_recv {
# Happens before we check if we have this in cache already.
#
# Typically you clean up the request here, removing cookies you
don't need,
# rewriting the request, etc.
set req.backend_hint = uwsgi;
if (req.method == "GET") {
if ((req.http.Cookie !~ "sessionid=") &&
(req.http.Cookie !~ "loggedin_user=") &&
(req.url !~ "^/esi")) {
unset req.http.cookie; # strip the cookies - we don't
need them
}
}
}
sub vcl_backend_response {
# Happens after we have read the response headers from the backend.
#
# Here you clean the response headers, removing silly Set-Cookie
headers
# and other mistakes your backend does.
if (bereq.method == "GET") {
set beresp.do_esi = true;
if ((beresp.http.Set-Cookie !~ "jivaana_user=") &&
(beresp.http.Set-Cookie !~ "sessionid=") &&
(bereq.http.Cookie !~ "sessionid=") &&
(bereq.http.Cookie !~ "jivaana_user=") &&
(bereq.url !~ "^/product/addtobasket")) {
#unset beresp.http.Set-Cookie;
set beresp.uncacheable = false;
return(deliver);
}
}
}
-------------- next part --------------
* << Request >> 8
- Begin req 7 rxreq
- Timestamp Start: 1464266702.728722 0.000000 0.000000
- Timestamp Req: 1464266702.728722 0.000000 0.000000
- ReqStart 127.0.0.1 42902
- ReqMethod GET
- ReqURL /clothing/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Cache-Control: max-age=0
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/juttis/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- ReqUnset Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- VCL_return hash
- ReqUnset Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Encoding: gzip
- VCL_call HASH
- VCL_return lookup
- Hit 6
- VCL_call HIT
- VCL_return deliver
- RespProtocol HTTP/1.1
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 334932
- RespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:44:46 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:44:46 GMT; Max-Age=31449600; Path=/
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespHeader X-Varnish: 8 6
- RespHeader Age: 16
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266702.728845 0.000123 0.000123
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266702.729090 0.000368 0.000245
- ReqAcct 1179 0 1179 624 334932 335556
- End
* << Session >> 7
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42902 0.0.0.0:9003 127.0.0.1 9003 1464266702.728659 19
- Link req 8 rxreq
- SessClose RESP_CLOSE 0.001
- End
* << BeReq >> 32774
- Begin bereq 32773 pass
- Timestamp Start: 1464266810.235816 0.000000 0.000000
- BereqMethod GET
- BereqURL /clothing/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Cache-Control: max-age=0
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/clothing/
- BereqHeader Accept-Encoding: gzip, deflate, sdch
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader X-Varnish: 32774
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57250
- Timestamp Bereq: 1464266810.235999 0.000184 0.000184
- Timestamp Beresp: 1464266810.324350 0.088535 0.088351
- BerespProtocol HTTP/1.0
- BerespStatus 200
- BerespReason OK
- BerespHeader Content-Length: 334932
- BerespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:46:50 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:46:50 GMT; Max-Age=31449600; Path=/
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- BerespHeader Set-Cookie: sessionid=b8sozfjdp41xudva0yxhqdca880dcqsg; expires=Sat, 02-May-2116 12:46:50 GMT; httponly; Max-Age=3153600000; Path=/
- TTL RFC 300 10 -1 1464266810 1464266810 1464266810 1464266986 300
- VCL_call BACKEND_RESPONSE
- TTL VCL 120 10 0 1464266810
- VCL_return deliver
- Storage malloc Transient
- ObjProtocol HTTP/1.0
- ObjStatus 200
- ObjReason OK
- ObjHeader Content-Length: 334932
- ObjHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:46:50 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:46:50 GMT; Max-Age=31449600; Path=/
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- ObjHeader Set-Cookie: sessionid=b8sozfjdp41xudva0yxhqdca880dcqsg; expires=Sat, 02-May-2116 12:46:50 GMT; httponly; Max-Age=3153600000; Path=/
- Fetch_Body 3 length stream
- BackendClose 21 boot.uwsgi
- Timestamp BerespBody: 1464266810.326406 0.090590 0.002055
- Length 334932
- BereqAcct 1385 0 1385 671 334932 335603
- End
* << Request >> 32773
- Begin req 32772 rxreq
- Timestamp Start: 1464266810.235653 0.000000 0.000000
- Timestamp Req: 1464266810.235653 0.000000 0.000000
- ReqStart 127.0.0.1 42905
- ReqMethod GET
- ReqURL /clothing/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Cache-Control: max-age=0
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/clothing/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- VCL_return pass
- VCL_call HASH
- VCL_return lookup
- VCL_call PASS
- VCL_return fetch
- Link bereq 32774 pass
- Timestamp Fetch: 1464266810.324477 0.088825 0.088825
- RespProtocol HTTP/1.0
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 334932
- RespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:46:50 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:46:50 GMT; Max-Age=31449600; Path=/
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespHeader Set-Cookie: sessionid=b8sozfjdp41xudva0yxhqdca880dcqsg; expires=Sat, 02-May-2116 12:46:50 GMT; httponly; Max-Age=3153600000; Path=/
- RespProtocol HTTP/1.1
- RespHeader X-Varnish: 32773
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266810.324504 0.088851 0.000026
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266810.330895 0.095242 0.006391
- ReqAcct 1358 0 1358 759 334932 335691
- End
* << Session >> 32772
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42905 0.0.0.0:9003 127.0.0.1 9003 1464266810.235566 18
- Link req 32773 rxreq
- SessClose RESP_CLOSE 0.096
- End
* << BeReq >> 11
- Begin bereq 10 pass
- Timestamp Start: 1464266840.814078 0.000000 0.000000
- BereqMethod GET
- BereqURL /clothing/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Cache-Control: max-age=0
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/clothing/
- BereqHeader Accept-Encoding: gzip, deflate, sdch
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader X-Varnish: 11
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57255
- Timestamp Bereq: 1464266840.819873 0.005795 0.005795
- Timestamp Beresp: 1464266840.850814 0.036736 0.030941
- BerespProtocol HTTP/1.0
- BerespStatus 200
- BerespReason OK
- BerespHeader Content-Length: 334932
- BerespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:47:20 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- TTL RFC 300 10 -1 1464266841 1464266841 1464266840 1464266986 300
- VCL_call BACKEND_RESPONSE
- TTL VCL 120 10 0 1464266841
- VCL_return deliver
- Storage malloc Transient
- ObjProtocol HTTP/1.0
- ObjStatus 200
- ObjReason OK
- ObjHeader Content-Length: 334932
- ObjHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:47:20 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- Fetch_Body 3 length stream
- BackendClose 21 boot.uwsgi
- Timestamp BerespBody: 1464266840.852163 0.038085 0.001349
- Length 334932
- BereqAcct 1426 0 1426 415 334932 335347
- End
* << Request >> 10
- Begin req 9 rxreq
- Timestamp Start: 1464266840.813811 0.000000 0.000000
- Timestamp Req: 1464266840.813811 0.000000 0.000000
- ReqStart 127.0.0.1 42910
- ReqMethod GET
- ReqURL /clothing/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Cache-Control: max-age=0
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/clothing/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- VCL_return pass
- VCL_call HASH
- VCL_return lookup
- VCL_call PASS
- VCL_return fetch
- Link bereq 11 pass
- Timestamp Fetch: 1464266840.851103 0.037292 0.037292
- RespProtocol HTTP/1.0
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 334932
- RespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:47:20 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespProtocol HTTP/1.1
- RespHeader X-Varnish: 10
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266840.851142 0.037330 0.000039
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266840.852340 0.038528 0.001198
- ReqAcct 1402 0 1402 500 334932 335432
- End
* << Session >> 9
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42910 0.0.0.0:9003 127.0.0.1 9003 1464266840.813701 18
- Link req 10 rxreq
- SessClose RESP_CLOSE 0.039
- End
* << Request >> 32776
- Begin req 32775 rxreq
- Timestamp Start: 1464266845.838164 0.000000 0.000000
- Timestamp Req: 1464266845.838164 0.000000 0.000000
- ReqStart 127.0.0.1 42912
- ReqMethod GET
- ReqURL /juttis/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/clothing/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- VCL_return pass
- VCL_call HASH
- VCL_return lookup
- VCL_call PASS
- VCL_return fetch
- Link bereq 32777 pass
- Timestamp Fetch: 1464266846.721065 0.882900 0.882900
- RespProtocol HTTP/1.0
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 320382
- RespHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:47:26 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:47:26 GMT; Max-Age=31449600; Path=/
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespProtocol HTTP/1.1
- RespHeader X-Varnish: 32776
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266846.721142 0.882978 0.000077
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266846.727199 0.889035 0.006057
- ReqAcct 1374 0 1374 625 320382 321007
- End
* << Session >> 32775
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42912 0.0.0.0:9003 127.0.0.1 9003 1464266845.838071 18
- Link req 32776 rxreq
- SessClose RESP_CLOSE 0.889
- End
* << BeReq >> 32777
- Begin bereq 32776 pass
- Timestamp Start: 1464266845.838299 0.000000 0.000000
- BereqMethod GET
- BereqURL /juttis/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/clothing/
- BereqHeader Accept-Encoding: gzip, deflate, sdch
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader X-Varnish: 32777
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57257
- Timestamp Bereq: 1464266845.838568 0.000269 0.000269
- Timestamp Beresp: 1464266846.720820 0.882521 0.882252
- BerespProtocol HTTP/1.0
- BerespStatus 200
- BerespReason OK
- BerespHeader Content-Length: 320382
- BerespHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:47:26 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:47:26 GMT; Max-Age=31449600; Path=/
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- TTL RFC 300 10 -1 1464266847 1464266847 1464266846 1464267146 300
- VCL_call BACKEND_RESPONSE
- TTL VCL 120 10 0 1464266847
- VCL_return deliver
- Storage malloc Transient
- ObjProtocol HTTP/1.0
- ObjStatus 200
- ObjReason OK
- ObjHeader Content-Length: 320382
- ObjHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:47:26 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; expires=Thu, 25-May-2017 12:47:26 GMT; Max-Age=31449600; Path=/
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- Fetch_Body 3 length stream
- BackendClose 21 boot.uwsgi
- Timestamp BerespBody: 1464266846.727478 0.889179 0.006658
- Length 320382
- BereqAcct 1401 0 1401 537 320382 320919
- End
* << BeReq >> 14
- Begin bereq 13 pass
- Timestamp Start: 1464266850.003886 0.000000 0.000000
- BereqMethod GET
- BereqURL /clothing/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/clothing/
- BereqHeader Accept-Encoding: gzip, deflate, sdch
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader X-Varnish: 14
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57260
- Timestamp Bereq: 1464266850.004331 0.000445 0.000445
- Timestamp Beresp: 1464266850.042777 0.038891 0.038445
- BerespProtocol HTTP/1.0
- BerespStatus 200
- BerespReason OK
- BerespHeader Content-Length: 334932
- BerespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:47:30 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- TTL RFC 300 10 -1 1464266850 1464266850 1464266850 1464266986 300
- VCL_call BACKEND_RESPONSE
- TTL VCL 120 10 0 1464266850
- VCL_return deliver
- Storage malloc Transient
- ObjProtocol HTTP/1.0
- ObjStatus 200
- ObjReason OK
- ObjHeader Content-Length: 334932
- ObjHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:47:30 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- Fetch_Body 3 length stream
- BackendClose 21 boot.uwsgi
- Timestamp BerespBody: 1464266850.043962 0.040076 0.001185
- Length 334932
- BereqAcct 1400 0 1400 415 334932 335347
- End
* << Request >> 13
- Begin req 12 rxreq
- Timestamp Start: 1464266850.003736 0.000000 0.000000
- Timestamp Req: 1464266850.003736 0.000000 0.000000
- ReqStart 127.0.0.1 42915
- ReqMethod GET
- ReqURL /clothing/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/clothing/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- VCL_return pass
- VCL_call HASH
- VCL_return lookup
- VCL_call PASS
- VCL_return fetch
- Link bereq 14 pass
- Timestamp Fetch: 1464266850.043010 0.039274 0.039274
- RespProtocol HTTP/1.0
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 334932
- RespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:47:30 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespProtocol HTTP/1.1
- RespHeader X-Varnish: 13
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266850.043042 0.039306 0.000032
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266850.044136 0.040400 0.001094
- ReqAcct 1376 0 1376 500 334932 335432
- End
* << Session >> 12
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42915 0.0.0.0:9003 127.0.0.1 9003 1464266850.003624 19
- Link req 13 rxreq
- SessClose RESP_CLOSE 0.041
- End
* << BeReq >> 17
- Begin bereq 16 pass
- Timestamp Start: 1464266852.268802 0.000000 0.000000
- BereqMethod GET
- BereqURL /clothing/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Cache-Control: max-age=0
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/clothing/
- BereqHeader Accept-Encoding: gzip, deflate, sdch
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- BereqHeader If-Modified-Since: Thu, 26 May 2016 12:44:46 GMT
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader X-Varnish: 17
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57262
- Timestamp Bereq: 1464266852.269130 0.000327 0.000327
- Timestamp Beresp: 1464266852.286691 0.017889 0.017561
- BerespProtocol HTTP/1.0
- BerespStatus 304
- BerespReason OK
- BerespHeader Content-Length: 0
- BerespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:47:32 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- TTL RFC 300 10 -1 1464266852 1464266852 1464266852 1464266986 300
- VCL_call BACKEND_RESPONSE
- TTL VCL 120 10 0 1464266852
- VCL_return deliver
- Storage malloc Transient
- ObjProtocol HTTP/1.0
- ObjStatus 304
- ObjReason OK
- ObjHeader Content-Length: 0
- ObjHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:47:32 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- Fetch_Body 0 none -
- BackendClose 21 boot.uwsgi
- Timestamp BerespBody: 1464266852.286892 0.018089 0.000201
- Length 0
- BereqAcct 1476 0 1476 410 0 410
- End
* << Request >> 16
- Begin req 15 rxreq
- Timestamp Start: 1464266852.268643 0.000000 0.000000
- Timestamp Req: 1464266852.268643 0.000000 0.000000
- ReqStart 127.0.0.1 42917
- ReqMethod GET
- ReqURL /clothing/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Cache-Control: max-age=0
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/clothing/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader If-Modified-Since: Thu, 26 May 2016 12:44:46 GMT
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- VCL_return pass
- VCL_call HASH
- VCL_return lookup
- VCL_call PASS
- VCL_return fetch
- Link bereq 17 pass
- Timestamp Fetch: 1464266852.286993 0.018349 0.018349
- RespProtocol HTTP/1.0
- RespStatus 304
- RespReason OK
- RespHeader Content-Length: 0
- RespHeader Expires: Thu, 26 May 2016 12:49:46 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:44:46 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:47:32 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespProtocol HTTP/1.1
- RespHeader X-Varnish: 16
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266852.287160 0.018517 0.000167
- RespUnset Content-Length: 0
- Debug "RES_MODE 0"
- RespHeader Connection: close
- Timestamp Resp: 1464266852.287240 0.018597 0.000080
- ReqAcct 1452 0 1452 454 0 454
- End
* << Session >> 15
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42917 0.0.0.0:9003 127.0.0.1 9003 1464266852.268507 18
- Link req 16 rxreq
- SessClose RESP_CLOSE 0.019
- End
* << BeReq >> 65539
- Begin bereq 65538 pass
- Timestamp Start: 1464266855.401311 0.000000 0.000000
- BereqMethod GET
- BereqURL /juttis/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/clothing/
- BereqHeader Accept-Encoding: gzip, deflate, sdch
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader X-Varnish: 65539
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57264
- Timestamp Bereq: 1464266855.401576 0.000265 0.000265
- Timestamp Beresp: 1464266855.439149 0.037838 0.037573
- BerespProtocol HTTP/1.0
- BerespStatus 200
- BerespReason OK
- BerespHeader Content-Length: 320382
- BerespHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:47:35 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- TTL RFC 300 10 -1 1464266855 1464266855 1464266855 1464267146 300
- VCL_call BACKEND_RESPONSE
- TTL VCL 120 10 0 1464266855
- VCL_return deliver
- Storage malloc Transient
- ObjProtocol HTTP/1.0
- ObjStatus 200
- ObjReason OK
- ObjHeader Content-Length: 320382
- ObjHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:47:35 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- Fetch_Body 3 length stream
- BackendClose 21 boot.uwsgi
- Timestamp BerespBody: 1464266855.439849 0.038538 0.000700
- Length 320382
- BereqAcct 1401 0 1401 415 320382 320797
- End
* << Request >> 65538
- Begin req 65537 rxreq
- Timestamp Start: 1464266855.401159 0.000000 0.000000
- Timestamp Req: 1464266855.401159 0.000000 0.000000
- ReqStart 127.0.0.1 42919
- ReqMethod GET
- ReqURL /juttis/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/clothing/
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; mp_774636c1ed2371eaf99455f71871069c_mixpanel=%7B%22distinct_id%22%3A%20%221518b8ba6c314b-04bd3d4-6b1b237b-100200-151
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- VCL_return pass
- VCL_call HASH
- VCL_return lookup
- VCL_call PASS
- VCL_return fetch
- Link bereq 65539 pass
- Timestamp Fetch: 1464266855.439933 0.038774 0.038774
- RespProtocol HTTP/1.0
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 320382
- RespHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:47:35 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespProtocol HTTP/1.1
- RespHeader X-Varnish: 65538
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266855.439978 0.038819 0.000045
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266855.440157 0.038998 0.000179
- ReqAcct 1374 0 1374 503 320382 320885
- End
* << Session >> 65537
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42919 0.0.0.0:9003 127.0.0.1 9003 1464266855.401067 19
- Link req 65538 rxreq
- SessClose RESP_CLOSE 0.039
- End
* << BeReq >> 65542
- Begin bereq 65541 fetch
- Timestamp Start: 1464266862.312386 0.000000 0.000000
- BereqMethod GET
- BereqURL /juttis/
- BereqProtocol HTTP/1.0
- BereqHeader X-CLIENT-COUNTRY: IN
- BereqHeader Host: varnish_staging
- BereqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- BereqHeader Upgrade-Insecure-Requests: 1
- BereqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- BereqHeader Referer: http://test.jivaana.in/home
- BereqHeader Accept-Language: en-US,en;q=0.8
- BereqHeader X-Forwarded-For: 127.0.0.1
- BereqHeader Accept-Encoding: gzip
- BereqProtocol HTTP/1.1
- BereqHeader X-Varnish: 65542
- VCL_call BACKEND_FETCH
- VCL_return fetch
- BackendOpen 21 boot.uwsgi 127.0.0.1 7090 127.0.0.1 57270
- Timestamp Bereq: 1464266862.312759 0.000373 0.000373
- Timestamp Beresp: 1464266862.330167 0.017781 0.017408
- BerespProtocol HTTP/1.1
- BerespStatus 200
- BerespReason OK
- BerespHeader Content-Length: 320382
- BerespHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- BerespHeader Vary: X-CLIENT-COUNTRY, Cookie
- BerespHeader X-CLIENT-COUNTRY: IN
- BerespHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- BerespHeader Cache-Control: max-age=300
- BerespHeader Date: Thu, 26 May 2016 12:47:42 GMT
- BerespHeader X-Frame-Options: SAMEORIGIN
- BerespHeader Content-Type: text/html; charset=utf-8
- BerespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- TTL RFC 300 10 -1 1464266862 1464266862 1464266862 1464267146 300
- VCL_call BACKEND_RESPONSE
- VCL_return deliver
- Storage file s0
- ObjProtocol HTTP/1.1
- ObjStatus 200
- ObjReason OK
- ObjHeader Content-Length: 320382
- ObjHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- ObjHeader Vary: X-CLIENT-COUNTRY, Cookie
- ObjHeader X-CLIENT-COUNTRY: IN
- ObjHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- ObjHeader Cache-Control: max-age=300
- ObjHeader Date: Thu, 26 May 2016 12:47:42 GMT
- ObjHeader X-Frame-Options: SAMEORIGIN
- ObjHeader Content-Type: text/html; charset=utf-8
- ObjHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- Fetch_Body 3 length stream
- BackendReuse 21 boot.uwsgi
- Timestamp BerespBody: 1464266862.332980 0.020595 0.002813
- Length 320382
- BereqAcct 458 0 458 415 320382 320797
- End
* << Request >> 65541
- Begin req 65540 rxreq
- Timestamp Start: 1464266862.312107 0.000000 0.000000
- Timestamp Req: 1464266862.312107 0.000000 0.000000
- ReqStart 127.0.0.1 42925
- ReqMethod GET
- ReqURL /juttis/
- ReqProtocol HTTP/1.0
- ReqHeader X-CLIENT-COUNTRY: IN
- ReqHeader Host: varnish_staging
- ReqHeader Connection: close
- ReqHeader Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
- ReqHeader Upgrade-Insecure-Requests: 1
- ReqHeader User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36
- ReqHeader Referer: http://test.jivaana.in/home
- ReqHeader Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Language: en-US,en;q=0.8
- ReqHeader Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; _gat=1; csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; _ga=GA1.2.886266615.1446454138; mp_774636c1ed2371eaf99455f718710
- ReqHeader X-Forwarded-For: 127.0.0.1
- VCL_call RECV
- ReqUnset Cookie: pagemap=0,0,0,0,0,1,0'; _xsrf=2|f25d8caf|ffacf1c86b71827915f94aed8e9aeace|1462920275; jivaana_country=IN; pagemap=0,0,0,0,0,1,0'; _gat=1; csrftoken=WPe3VfvSNhL1bwf6bcgopNaGzK02Y9Bp; _ga=GA1.2.886266615.1446454138; mp_774636c1ed2371eaf99455f718710
- VCL_return hash
- ReqUnset Accept-Encoding: gzip, deflate, sdch
- ReqHeader Accept-Encoding: gzip
- VCL_call HASH
- VCL_return lookup
- VCL_call MISS
- VCL_return fetch
- Link bereq 65542 fetch
- Timestamp Fetch: 1464266862.330719 0.018612 0.018612
- RespProtocol HTTP/1.1
- RespStatus 200
- RespReason OK
- RespHeader Content-Length: 320382
- RespHeader Expires: Thu, 26 May 2016 12:52:26 GMT
- RespHeader Vary: X-CLIENT-COUNTRY, Cookie
- RespHeader X-CLIENT-COUNTRY: IN
- RespHeader Last-Modified: Thu, 26 May 2016 12:47:26 GMT
- RespHeader Cache-Control: max-age=300
- RespHeader Date: Thu, 26 May 2016 12:47:42 GMT
- RespHeader X-Frame-Options: SAMEORIGIN
- RespHeader Content-Type: text/html; charset=utf-8
- RespHeader Set-Cookie: jivaana_num_basket_items=; expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/
- RespHeader X-Varnish: 65541
- RespHeader Age: 0
- RespHeader Via: 1.1 varnish-v4
- VCL_call DELIVER
- VCL_return deliver
- Timestamp Process: 1464266862.330795 0.018688 0.000076
- RespHeader Accept-Ranges: bytes
- Debug "RES_MODE 2"
- RespHeader Connection: close
- Timestamp Resp: 1464266862.334010 0.021903 0.003215
- ReqAcct 1148 0 1148 503 320382 320885
- End
* << Session >> 65540
- Begin sess 0 HTTP/1
- SessOpen 127.0.0.1 42925 0.0.0.0:9003 127.0.0.1 9003 1464266862.311702 18
- Link req 65541 rxreq
- SessClose RESP_CLOSE 0.022
- End
More information about the varnish-misc
mailing list