/etc/nginx/common/redis.conf bug?

Right now, you have this code:

# POST requests and URL with a query string should always go to php
if ($request_method = POST) {
  set $skip_cache 0;
}

It should be:

# POST requests and URL with a query string should always go to php
if ($request_method = POST) {
  set $skip_cache 1;
}

Same on redis-hhvm.conf.

@RoldanLT

Yes this should be same as you reported. This will be fixed in upcoming version. Thanks for reporting.