Compare commits
2 Commits
03295580e3
...
c8c2528fc2
Author | SHA1 | Date | |
---|---|---|---|
c8c2528fc2 | |||
c88201bafe |
@ -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.
|
||||
|
||||
|
@ -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>,
|
||||
|
Loading…
Reference in New Issue
Block a user