Hacker News new | ask | show | jobs
by Rapzid 789 days ago
> Generally, you would want to place an upload server to accept uploads from your customers

A common pattern on AWS is to not handle the upload on your own servers. Checks are made ahead of time, conditions baked into the signed URL, and processing is handled after the fact via bucket events.

1 comments

That is also a common pattern I agree, both ways are fine if the upload server is optimised accordingly :)