PCC19 / webserv

A simple HTTP web server written in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webserv

build

In the context of this project, a web server is special software capable of litens to internet requests via the HyperText Transfer Protocol (HTTP), letting us communicate two or more devices through a network. With a web server, one may accept and lsiten to requests how may serve static websites, REST API responses or any other piece of data that may be transfered usgin the HTTP network protocol. For the more pratical people, webserv aims to implement similar functionalities as classic HTTP web servers, such as the Apache Web Server and NGINX.

Build and Running

cmake -B build
cmake --build build
./webserv

About

A simple HTTP web server written in C++

License:MIT License


Languages

Language:C++ 57.1%Language:HTML 37.9%Language:Shell 2.8%Language:Python 1.6%Language:Makefile 0.7%