Compare commits

...

2 Commits

Author SHA1 Message Date
c8c2528fc2 increase default body limit 2024-05-29 20:32:21 +03:00
c88201bafe update readme 2024-05-29 20:28:01 +03:00
2 changed files with 5 additions and 3 deletions

View File

@ -51,12 +51,14 @@ Mandatory fields:
- `sample_rate`
- `url` (for `/enqueue_url`)
You can change configuration using this environment variables:
# Configuration
You can change configuration using these environment variables:
- `LISTEN` - change this environment variable to change TCP listen address. Default is `0.0.0.0:8090`.
- `NUM_WORKERS` - can be used to change how many threads will be used to transcode incoming files. Default is equal to logical CPUs.
- `TEMP_DIR` - this can be used to change which directory should be used to store incoming downloads and transcoding results. Useful if you want to use a Docker volume for this. Default is system temp directory (`/tmp` for Linux).
- `LOG_LEVEL` - changes log verbosity, default is `info`.
- `MAX_BODY_SIZE` - changes max body size for `/enqueue`. Default is 100MB, maximum is 1GiB (which is still *a lot* for the multipart form).
- `MAX_BODY_SIZE` - changes max body size for `/enqueue` and max file size for `/enqueue_url`. Default is 1GB (`file` in `/enqueue` request has an upper limit of `1GiB`).
- `RESULT_TTL_SEC` - sets result ttl in seconds, minimum 60 seconds. Default is 3600 (transcoding results are being kept and can be downloaded for an hour).
- `FFMPEG_VERBOSE` - if set to `1` changes FFmpeg log level from quiet to trace.

View File

@ -29,7 +29,7 @@ use tokio::fs::File;
use tokio::io::AsyncReadExt;
use tokio_util::io::ReaderStream;
const CONTENT_LENGTH_LIMIT: usize = 100 * 1024 * 1024;
const CONTENT_LENGTH_LIMIT: usize = 1024 * 1024 * 1024; // 1GB
pub struct Server {
thread_pool: Arc<ThreadPool>,