docs: add configuration reference

This commit is contained in:
germondai
2026-06-16 12:00:00 +02:00
parent b755bbdc67
commit cac364f5c0
+122
View File
@@ -0,0 +1,122 @@
---
title: Configuration
description: All environment variables for TRAWL, with defaults and examples.
---
# Configuration
All configuration is via environment variables. Copy `.env.example` to `.env` and edit before starting.
## Redis
### `REDIS_URL`
**Default:** `redis://localhost:6379`
Standard Redis connection URL. When running inside Docker Compose use the service name:
```ini
REDIS_URL=redis://redis:6379
```
With authentication:
```ini
REDIS_URL=redis://:yourpassword@redis:6379
```
With a specific database index:
```ini
REDIS_URL=redis://redis:6379/1
```
## Browser Pool
### `BROWSER_POOL_SIZE`
**Default:** `3`
Number of Camoufox Firefox instances to keep warm. Each instance uses ~350500 MB RAM under load. Start conservative and raise if you need higher concurrency.
```ini
BROWSER_POOL_SIZE=1 # minimal (1 GB host RAM)
BROWSER_POOL_SIZE=3 # default — good for most self-hosted setups
BROWSER_POOL_SIZE=8 # high-throughput (6+ GB host RAM)
```
> **Note:** The API container sets `shm_size: 1gb` by default. If you raise `BROWSER_POOL_SIZE` above 5, also raise `shm_size` in your `docker-compose.yml` to at least `2gb`.
## Session Cache
### `SESSION_TTL_SECONDS`
**Default:** `3600` (1 hour)
How long Cloudflare cookies are cached in Redis per domain. After this TTL the next request to the domain triggers a fresh challenge solve (Tier 3) and refreshes the cache.
Cloudflare's `cf_clearance` cookie typically has a 30-minute expiry. Setting `SESSION_TTL_SECONDS` below 1800 wastes cache hits; setting it above 7200 risks replaying expired cookies (TRAWL handles this gracefully by invalidating the cache and falling back to Tier 3).
```ini
SESSION_TTL_SECONDS=3600 # default — safe for most sites
SESSION_TTL_SECONDS=1800 # more conservative
```
## Proxies
### `PROXY_URL`
**Default:** _(empty — no proxy)_
Datacenter proxy used for Tier 3 (fresh challenge solve). Format: `protocol://user:pass@host:port`.
```ini
PROXY_URL=http://user:pass@dc-proxy.example.com:8080
```
Leave empty to run Tier 3 without a proxy (your server's real IP is used).
### `RESIDENTIAL_PROXY_URL`
**Default:** _(empty — Tier 4 disabled)_
Residential proxy used for Tier 4 (when the datacenter IP is flagged). Same format as `PROXY_URL`. Tier 4 is completely skipped if this variable is not set.
```ini
RESIDENTIAL_PROXY_URL=http://user:pass@residential.example.com:8080
```
## Ports
### `PORT_API`
**Default:** `8191`
Port the Elysia API server listens on. Defaults to `8191` — the same port FlareSolverr and Byparr use, so you can swap TRAWL in without changing any *arr app settings.
### `PORT_WEB`
**Default:** `3000`
Port the Nuxt landing page listens on.
---
## Full `.env.example`
```ini
# ── Redis ─────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ── Browser pool ──────────────────────────────
BROWSER_POOL_SIZE=5
SESSION_TTL_SECONDS=3600
# ── Proxies (optional) ────────────────────────
PROXY_URL=
RESIDENTIAL_PROXY_URL=
# ── Ports ─────────────────────────────────────
PORT_API=8191
PORT_WEB=3000
```