You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
About WebServer like Nginx is a high-performance, non-blocking web server that leverages event-driven architecture. Inspired by the original Nginx, it is further optimized with cross-platform I/O multiplexing to deliver exceptional efficiency and scalability. Topics
A custom web server built in C++ to simulate Nginx behavior and handle multiple client connections. Implemented HTTP/1.1 features with GET, POST, and DELETE methods. Used non-blocking I/O with poll() for concurrent connections. Added file uploads, static site hosting, and custom error pages.
JetServer is a lightweight C++98 HTTP server supporting virtual hosting, routing, CGI, and efficient connection handling. Designed for learning server internals or building custom web services.
webserv is a web server application written in C++, and is an attempt to write our own NGINX. The project is heavily inspired by NGINX, and is part of 42Berlin curriculum.