diff --git a/README.md b/README.md
index 217d7dd..e614f28 100644
--- a/README.md
+++ b/README.md
@@ -76,6 +76,9 @@ curl -i --path-as-is http://127.0.0.1:8080/../etc/passwd
python3 -m unittest discover -s tests -v
```
+The streaming test creates a deterministic multi-chunk payload in a temporary
+directory. Large generated binaries are not stored in the repository.
+
## Project structure
```text
diff --git a/resources/about.html b/resources/about.html
index 65a7174..1f3dd9d 100644
--- a/resources/about.html
+++ b/resources/about.html
@@ -18,7 +18,6 @@
logo.png (PNG)
photo.jpg (JPEG)
photo2.jpg (JPEG)
- large.png (PNG ~27MB)
sample.txt
sample2.txt
@@ -35,7 +34,7 @@
Key Features
Socket Programming: Built on raw TCP sockets (bind, listen, accept) for client connections
Multi-threading: Custom ThreadPool with bounded queue (max 100 tasks) handles concurrent requests
HTTP Methods: Supports GET for static files and POST for JSON uploads to /upload endpoint
- Binary Transfer: Serves images (PNG, JPEG) and large files (>1MB) with proper Content-Type headers
+ Binary Transfer: Streams PNG and JPEG fixtures with explicit download headers
Keep-Alive: Connection reuse with timeout=30s and max=100 requests per connection
Security: Path traversal protection (blocks .., ./, ~, absolute paths) and Host header validation
Error Handling: Returns 503 Service Unavailable when thread pool is saturated
@@ -63,4 +62,4 @@ Project Specifica