๐ WebServ Sample Page
Welcome to the WebServ demonstration page! This HTML file showcases the static file serving capabilities of our high-performance C++ web server.
โจ Key Features
- HTTP/1.1 compliant implementation
- Epoll-based event handling for maximum performance
- Modern C++20 codebase
- Nginx-style configuration
- Virtual host support
- Custom error pages
๐ง Technical Specifications
Built with cutting-edge technology for optimal performance:
Compiler: clang++ 12.0.1
Standard: C++20
Architecture: x86_64
Build System: CMake + Make
Event Loop: epoll (Linux)
Memory Management: RAII + Smart Pointers
10,000+
Concurrent Connections
<1ms
Average Response Time
๐ Request Information
This page was served by WebServ with the following details:
Server: WebServ/1.0
Content-Type: text/html; charset=UTF-8
Status: 200 OK
Method: GET
URI: /examples/sample.html
Timestamp:
๐งช Testing Commands
You can test this page using various HTTP clients:
# Basic request
curl http://localhost:8080/examples/sample.html
# With headers
curl -I http://localhost:8080/examples/sample.html
# Performance test
ab -n 1000 -c 10 http://localhost:8080/examples/sample.html