welcome u can store ur renders here
invite-only
\\https://buckets.ctt.cx\ to any drive letter you wantyou can use curl to upload a file, or change a file's mimetype (so browser interpret file differently
The request path is always the destination — there is no /upload prefix.
Uploads accept both PUT and POST. All of these are jailed to the caller's
own directory and require Basic auth.
# upload a file (type inferred from the .mp4 extension)
curl -u foo:pass -T ./clip.mp4 https://<host>/clip.mp4
curl -u foo:pass --data-binary @clip.mp4 https://<host>/clip.mp4 # POST works too
# upload and set the type explicitly
curl -u foo:pass --data-binary @blob "https://<host>/clip?type=video/mp4"
# change the type of an EXISTING file, without re-uploading (no body)
curl -u foo:pass -X POST "https://<host>/report.bin?type=application/pdf"
?type= (alias ?content-type=) takes a type/subtype[; params] string;
anything malformed returns 400. An explicit type sticks across serving and
PROPFIND; a later plain re-upload clears it and reverts to inference.