aws-signing-proxy icon indicating copy to clipboard operation
aws-signing-proxy copied to clipboard

signs http requests using AWS V4 signer

Results 5 aws-signing-proxy issues
Sort by recently updated
recently updated
newest added

When a client makes a `PUT` request to the proxy, many headers are dropped or changed. I have confirmed that `Content-Type`, `Content-Length`, `Accept: */*`, are dropped and `Transfer-Encoding: chunked` is...

I was unable to find documentation in the README.md on how to set the credentials used by the request signer. The docs link a [config struct](https://github.com/mozilla-services/aws-signing-proxy/blob/master/main.go#L83-L92) which also doesn't reference...

The [README says](https://github.com/mozilla-services/aws-signing-proxy/blame/1.0.3/README.md#L48) "Scheme and Host are preserved for proxied requests". That is actually a bit confusing, because it is not clear if it means the scheme and host of...

Currently, `SIGNING_PROXY_REGION` always defaults to `us-east-1`. It would be better to default it to whatever region the proxy is running in. The code [already exists](https://github.com/mozilla-services/aws-signing-proxy/blob/8c01b8914e7728faf693df286e311b99ec9bb7c6/main.go#L73) to fetch the current region,...

There are useful (and safe) settings and timeouts that are not set with a new custom transport (e.g. https://github.com/pmorie/go-open-service-broker-client/issues/132). This code should be replaced once there is a good way...