Tommy Situ
Tommy Situ
@ns3777k it's going to need a recording proxy behind the web server. The web server will rewrite the path dynamically based on the destination provided by the user in a...
Hoverfly can be used for HTTPS proxying, but it cannot run as an HTTPS web server at the moment.
I went through some debugging and couldn't see anywhere in goproxy or hoverfly that would remove the `Host` header, and then I found this in the [golang HTTP doc](https://pkg.go.dev/net/http): ```...
We use this library for templating: https://github.com/aymerick/raymond According to the doc, if you need to unescaped value, you can triple the mustache `{{{` 🧔 if you try this, it should...
both of your feature requests need to be based on the matcher chaining https://github.com/SpectoLabs/hoverfly/issues/761 which is still undone.
You can ignore response headers when diffing: ``` Usage: hoverctl mode [capture|diff|simulate|spy|modify|synthesize (optional)] [flags] Flags: --all-headers Record all request headers (for capture mode) or ignore all response headers (for diff...
I think capturing and simulating the binary data in the request body is a bit overkill. One workaround is to remove the request body so that it's not used for...
After reading this GitHub issue: https://github.com/arquillian/arquillian-organization/issues/10 I get a feeling that it is not necessary a middleware feature **Problem** Request/response pair could contain sensitive data from capturing live endpoints. Storing...
The current middleware does not support request modification in simulate mode, and not support response modification in the capture mode. The way it works is probably to tackle problems such...
What I propose is that middleware should behave as it is, but you can pass an additional flag to force it to run at a certain point regardless of the...