brighttpd is a small and fast static file server that uses Linux kernel toys like io_uring, splice, and kTLS.
make
mkdir -p www
umask 077
cat > brighttpd.conf <<'EOF'
listen [::]:8080
root www
EOF
./brighttpd -c brighttpd.conf -n
./brighttpd -c brighttpd.conf
index.html and 404.html fall back to pages embedded into the binary.GET and HEAD over HTTP/1.0 and HTTP/1.1, with keep-alive and single range queries.PR_SET_NO_NEW_PRIVS, always-on seccomp, and connection timeouts.
ran with make bench and make bench-tls on
2026-04-29. machine: Alpine edge, Linux
6.18.26-0-lts, Intel i3-N305, 8GiB LPDDR5.
each benchmark used wrk --latency for 10 seconds on
localhost.
mixed means 90 percent /small, 9 percent
/medium, and 1 percent /big.
charts show actual req/s on one shared axis. HTTP and TLS are split
into separate charts.