Is there any way to configure HAProxy to convert GET requests to POST when sending to the backend servers?
The background of the problem is that we want to use a Cloud based logging service (e.g. loggy.com), which only allows log events to be created via POST to its REST API. Log events will be created via Javascript in a browser when our widget is loaded onto webpages, thus we can't do POST because of CSRF prevention.
Is there a better way to do this besides setting up a proxy that converts GETs into POSTs?