-
Hi, I'm looking for a way to route a single S3 PUT request to the right S3 endpoint depending on the location of the file, like this: I foolishly thought I could just proxy_pass requests through Nginx like this:
But this obviously doesn't work as the S3v4 signature is not valid because the host gets signed into the request Changes to the code of the software that makes the PUT requests is not possible unfortunately. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Got it working using https://github.com/smiba/lua-resty-aws to sign requests instead of this project |
Beta Was this translation helpful? Give feedback.
Got it working using https://github.com/smiba/lua-resty-aws to sign requests instead of this project