The default bitnami setup for Gitlab uses Apache+Passenger.
As detailed in this issue https://code.google.com/p/phusion-passenger/issues/detail?id=1069 Passenger returns a 400 as soon as a GET or HEAD request contains a request body. This means that any index that was being passed paged parameters (.projects(), .groups(), etc.) all raise an error.
This patch encodes the data to URL parameters for GET and HEAD requests so that it will work with the bitnami Gitlab VM.
The default bitnami setup for Gitlab uses Apache+Passenger.
As detailed in this issue https://code.google.com/p/phusion-passenger/issues/detail?id=1069 Passenger returns a 400 as soon as a GET or HEAD request contains a request body. This means that any index that was being passed paged parameters (.projects(), .groups(), etc.) all raise an error.
This patch encodes the data to URL parameters for GET and HEAD requests so that it will work with the bitnami Gitlab VM.