tiny-proxy 0.3.0

A high-performance HTTP reverse proxy server written in Rust with SSE support, connection pooling, and configurable routing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
# Tiny Proxy

[![CI](https://github.com/denislituev/tiny-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/denislituev/tiny-proxy/actions)
[![Version](https://img.shields.io/crates/v/tiny-proxy)](https://crates.io/crates/tiny-proxy)
[![Downloads](https://img.shields.io/crates/d/tiny-proxy)](https://crates.io/crates/tiny-proxy)

[![License](https://img.shields.io/crates/l/tiny-proxy)](LICENSE)
[![Rust](https://img.shields.io/badge/rust-1.75%2B-orange)](https://www.rust-lang.org/)

Lightweight, embeddable HTTP reverse proxy written in Rust with Caddy-like configuration syntax.

## Features

- **Embeddable Library**: Use as a library in your Rust applications or run as standalone CLI
- **Caddy-like Configuration**: Simple, human-readable configuration format
- **Path-based Routing**: Pattern matching with wildcard support
- **Header Manipulation**: Add, modify, or remove headers
- **URI Rewriting**: Replace parts of request URIs
- **HTTP/HTTPS Backend Support**: Full support for both HTTP and HTTPS backends
- **Method-based Routing**: Different behavior for different HTTP methods
- **Direct Responses**: Respond with custom status codes and bodies
- **Authentication Module**: Token validation and header substitution
- **Management API**: REST API for runtime configuration management (optional feature)

## Installation

### As CLI

```bash
# Install via cargo
cargo install --path .

# Or build and run directly
cargo build --release
./target/release/tiny-proxy --config config.caddy
```

### As Library

Add to your `Cargo.toml`:

```toml
[dependencies]
tiny-proxy = "0.3"
```

## Usage

### CLI Mode

Run as standalone server:

```bash
tiny-proxy --config config.caddy --addr 127.0.0.1:8080
```

#### CLI Arguments

- `--config, -c`: Path to configuration file (default: `./file.caddy`)
- `--addr, -a`: Address to listen on (default: `127.0.0.1:8080`)

### Library Mode

#### Basic Example

```rust
use tiny_proxy::{Config, Proxy};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Load configuration from file
    let config = Config::from_file("config.caddy")?;
    
    // Create and start proxy
    let proxy = Proxy::new(config);
    proxy.start("127.0.0.1:8080").await?;
    
    Ok(())
}
```

#### Background Execution

Run proxy in background while doing other work:

```rust
use tiny_proxy::{Config, Proxy};
use std::sync::Arc;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = Config::from_file("config.caddy")?;
    let proxy = Arc::new(Proxy::new(config));
    
    // Spawn proxy in background
    let handle = tokio::spawn(async move {
        if let Err(e) = proxy.start("127.0.0.1:8080").await {
            eprintln!("Proxy error: {}", e);
        }
    });
    
    // Do other work here...
    handle.await?;
    
    Ok(())
}
```

#### Hot-Reload Configuration

Update configuration at runtime without restart. The proxy uses `Arc<RwLock<Config>>` internally,
so any config change takes effect immediately for new connections:

```rust
use tiny_proxy::{Config, Proxy};
use std::sync::Arc;
use tokio::sync::RwLock;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let config = Config::from_file("config.caddy")?;
    let proxy = Proxy::new(config);

    // Get shared config handle for hot-reload
    let config_handle = proxy.shared_config();

    // Spawn proxy in background
    let handle = tokio::spawn(async move {
        if let Err(e) = proxy.start("127.0.0.1:8080").await {
            eprintln!("Proxy error: {}", e);
        }
    });

    // Update config at runtime — takes effect immediately
    let new_config = Config::from_file("new-config.caddy")?;
    {
        let mut guard = config_handle.write().await;
        *guard = new_config;
    }

    handle.await?;
    Ok(())
}
```

Or use the built-in `update_config` method:

```rust
let new_config = Config::from_file("updated-config.caddy")?;
proxy.update_config(new_config).await;
```

## Configuration

tiny-proxy uses a Caddy-like configuration format.

### Basic Syntax

```caddy
site_address {
    directive1 arg1 arg2
    directive2 {
        nested_directive
    }
}
```

### Supported Directives

#### `reverse_proxy`

Forward requests to a backend server. Supports optional block syntax for timeout configuration.

```caddy
# Simple
localhost:8080 {
    reverse_proxy http://backend:3000
}

# With timeouts (for LLM/SSE backends)
localhost:8080 {
    reverse_proxy http://llm-backend:8000 {
        connect_timeout 10s
        read_timeout 600s
    }
}
```

Timeout values support duration suffixes: `30s`, `5m`, `2h`, `1d`, or plain numbers (seconds).

#### `handle_path`

Match paths with pattern (supports wildcard `*`).

```caddy
localhost:8080 {
    handle_path /api/* {
        reverse_proxy api-service:8000
    }
}
```

#### `uri_replace`

Replace part of the request URI.

```caddy
localhost:8080 {
    uri_replace /old-path /new-path
    reverse_proxy backend:3000
}
```

#### `header`

Add, modify, or remove request headers.

```caddy
localhost:8080 {
    # Add header with placeholder
    header X-Request-ID {uuid}

    # Add static header
    header X-Custom-Header custom-value

    # Remove header (prefix with -)
    header -Accept-Encoding

    reverse_proxy backend:3000
}
```

#### `method`

Apply directives based on HTTP method.

```caddy
localhost:8080 {
    method GET HEAD {
        respond 200 "OK"
    }
    reverse_proxy backend:3000
}
```

#### `strip_prefix`

Remove a prefix from the request URI path.

```caddy
localhost:8080 {
    strip_prefix /api
    reverse_proxy http://backend:3000
}
```

Request `/api/users/123` → backend receives `/users/123`.

#### `redirect`

Return a redirect response with `Location` header.

```caddy
localhost:8080 {
    # Permanent redirect (default 301)
    redirect https://new-domain.com

    # Temporary redirect
    redirect 302 /maintenance
}
```

Supported status codes: `301` (permanent), `302` (temporary), `307`, `308`.

#### `respond`

Return a direct response with custom status and body.

```caddy
localhost:8080 {
    respond 200 "Service is healthy"
}
```

### Configuration Examples

#### Simple Reverse Proxy

```caddy
localhost:8080 {
    reverse_proxy http://backend:3000
}
```

#### Multi-site Configuration

```caddy
api.example.com {
    reverse_proxy http://api-service:8000
}

static.example.com {
    reverse_proxy http://static-service:8001
}
```

#### API with Versioning

```caddy
localhost:8080 {
    handle_path /api/v1/* {
        handle_path /users/* {
            reverse_proxy http://user-service:8001
        }
        reverse_proxy http://api-service:8000
    }
    reverse_proxy http://default-backend:3000
}
```

#### Headers and URI Rewriting

```caddy
localhost:8080 {
    header X-Forwarded-For {header.X-Forwarded-For}
    header X-Request-ID {uuid}
    uri_replace /api /backend
    reverse_proxy http://backend:3000
}
```

#### Health Check Endpoint

```caddy
localhost:8080 {
    method GET HEAD {
        respond 200 "OK"
    }
    reverse_proxy http://backend:3000
}
```

### Placeholders

Use placeholders in header values:

- `{header.Name}` - Value of request header with that name
- `{env.VAR}` - Value of environment variable
- `{uuid}` - Random UUID

## Features

### Default Features

- `cli` - Command-line interface support
- `tls` - HTTPS backend support
- `api` - Management API for runtime configuration

### Optional Features

```toml
# Minimal - core proxy only (for embedding in other applications)
[dependencies]
tiny-proxy = { version = "0.3", default-features = false }

# With HTTPS backend support
[dependencies]
tiny-proxy = { version = "0.3", default-features = false, features = ["tls"] }

# With management API
[dependencies]
tiny-proxy = { version = "0.3", default-features = false, features = ["tls", "api"] }

# Full standalone (same as default)
[dependencies]
tiny-proxy = "0.3"
```

#### `cli` (default)

Enable CLI dependencies and `tiny-proxy` binary.

#### `tls` (default)

Enable HTTPS backend support using `hyper-rustls` (pure Rust TLS).

#### `api` (default)

Management API for runtime configuration:

```rust
use tiny_proxy::api;
use std::sync::Arc;
use tokio::sync::RwLock;

let config = Arc::new(RwLock::new(Config::from_file("config.caddy")?));
api::start_api_server("127.0.0.1:8081", config).await?;
```

## API Documentation

See the [module documentation](https://docs.rs/tiny-proxy) for detailed API reference.

### Main Types

- `Config` - Configuration container
- `Proxy` - Proxy instance
- `Directive` - Configuration directives
- `SiteConfig` - Per-site configuration

### Main Functions

- `Config::from_file(path)` - Load configuration from file
- `Config::from_str(content)` - Parse configuration from string
- `Proxy::new(config)` - Create proxy instance
- `Proxy::from_shared(config)` - Create proxy from shared `Arc<RwLock<Config>>`
- `Proxy::start(addr)` - Start proxy server
- `Proxy::shared_config()` - Get `Arc<RwLock<Config>>` for external config updates
- `Proxy::config_snapshot()` - Read current configuration as owned value
- `Proxy::update_config(config)` - Update configuration at runtime (async)

## Testing

Run all tests:

```bash
cargo test
```

Run specific tests:

```bash
# Specific test
cargo test test_pattern_matching
```

Run tests with logging:

```bash
RUST_LOG=debug cargo test
```

## Benchmarking

Run benchmarks:

```bash
cargo bench
```

Run specific benchmark:

```bash
cargo bench -- benchmark_name
```

## Development

### Project Structure

```
tiny-proxy/
├── src/
│   ├── main.rs              # CLI entry point
│   ├── lib.rs               # Library entry point
│   ├── cli/                 # CLI module
│   ├── config/              # Configuration parsing
│   ├── proxy/               # Proxy logic
│   ├── auth/                # Authentication (optional)
│   └── api/                 # Management API (optional)
├── examples/                # Usage examples
├── benches/                 # Benchmarks
```

### Build with Features

```bash
# Default (CLI + TLS + API)
cargo build

# Library only (no CLI dependencies)
cargo build --no-default-features

# Library with HTTPS support
cargo build --no-default-features --features tls

# Library with API for config management
cargo build --no-default-features --features tls,api

# CLI without API
cargo build --no-default-features --features cli,tls
```

### Run Examples

```bash
# Basic example
cargo run --example basic

# Background execution
cargo run --example background
```

## Roadmap



### Current Status

- ✅ Library mode
- ✅ CLI mode
- ✅ Configuration parsing
- ✅ Reverse proxy
- ✅ Path-based routing
- ✅ Header manipulation
- ✅ URI rewriting
- ✅ Method-based routing
- ✅ Direct responses
- ✅ Authentication module (basic)
- ✅ Management API with hot-reload

### Planned Features

- ⏳ Static file serving
- ⏳ Try files (SPA support)
- ⏳ Buffering control
- ⏳ TLS/SSL support
- ⏳ WebSocket support
- ⏳ Rate limiting
- ⏳ Request/response logging
- ⏳ Metrics and monitoring

## Contributing

Contributions are welcome! Please:

1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests
5. Run `cargo test` and `cargo clippy`
6. Submit a pull request

## License

See [LICENSE](LICENSE) file.