Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 481 Bytes

File metadata and controls

23 lines (19 loc) · 481 Bytes

C++ HTTP 1.1 webserver with nonblocking I/O (epoll)

make
./webserv <config file>

or:

Run docker

docker run -it -p 127.0.0.1:8080:8080 ubuntu

Inside docker run the following

apt update && DEBIAN_FRONTEND=noninteractive apt install build-essential git make python3 php-cgi siege -y
git clone https://github.com/atormac/webserv.git
cd webserv
make
./webserv configs/default.conf

Access website on host through http://127.0.0.1:8080