A website for temporary file- or text hosting
https://trash.ctdo.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
10 months ago | |
---|---|---|
src | 10 months ago | |
static | 10 months ago | |
template | 10 months ago | |
.dockerignore | 2 years ago | |
.gitignore | 2 years ago | |
Cargo.lock | 1 year ago | |
Cargo.toml | 1 year ago | |
Dockerfile | 10 months ago | |
LICENSE | 10 months ago | |
README.md | 10 months ago | |
docker-compose.yml | 10 months ago | |
init-db.sql | 1 year ago | |
screenshot.png | 2 years ago |
README.md
datatrash
A file and text uploading service with configurable time limit
compiling
cargo build --release
or
docker build -t datatrash .
docker cp datatrash:/home/rust/.cargo/bin/datatrash datatrash
or, to just run it in docker
docker-compose up -d --build
running & config
- The static files directory needs to be next to the binary.
- The maximum filename length is 255
General configuration
environment variable | default value |
---|---|
FILES_DIR | ./files |
UPLOAD_MAX_BYTES | 8388608 (8MiB) |
BIND_ADDRESS | 0.0.0.0:8000 |
Database configuration
environment variable | default value |
---|---|
DATABASE_URL | |
DATABASE_USER | |
DATABASE_PASS | |
DATABASE_HOST | localhost |
DATABASE_NAME | datatrash |
No auth limits configuration
Require authentication for certain uploads
- The password is provided as plain text
- Uploads with longer validity than NO_AUTH_MAX_TIME require authentication
- Uploads larger than NO_AUTH_LARGE_FILE_SIZE require auth when they are valid for longer than NO_AUTH_LARGE_FILE_MAX_TIME
- All times are in seconds, the size is in bytes
environment variable | default value |
---|---|
AUTH_PASSWORD | |
NO_AUTH_MAX_TIME | |
NO_AUTH_LARGE_FILE_MAX_TIME | |
NO_AUTH_LARGE_FILE_SIZE |