Simple File Host

A simple website that just hosts your file.

How to upload files?

HTTP POST files:

curl -F'file=@yourfile.png' https://f.teamortix.com/upload

If this instance is password protected:

curl -F'file=@yourfile.png' -F'pass=yourpassword' https://f.teamortix.com/upload

You can access uploaded files at the returned URL.

How to shorten URL?

HTTP POST your URL:

curl -d'url=https://example.com' https://f.teamortix.com/shorten

If this instance is password protected:

curl -d'url=https://example.com' -d'pass=yourpassword' https://f.teamortix.com/shorten

You can access redirects at the returned URL.

How long are files and shortened URLs kept?

Until the configured limit of the server is reached! Older and larger files get killed when that's reached.

URLs are treated as files with the URL as its content.

What cannot be uploaded?

Here's a non-exhaustive list.

Help out

If you run a server and like this site, clone it!
https://github.com/chanbakjsd/filehost

Credits

Inspired by 0x0.st. CSS stolen from bettermotherfuckingwebsite.com.