Backends

By default, Uppload works with any file uploading backend because it sends FormData. Uppload does not provide the server side implementation of handling the files, but the way files are uploaded is identical to simple file upload forms like this:

<form action="/endpoint" method="post" enctype="multipart/form-data">
  <input type="file" name="file" />
</form>

Here are some common backend templates to get your started: