Skip to content

TamLem/Webserv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webserv - A HTTP Web Server

This is an implementation of a HTTP Web Server, in C++98 using C socket libraries
and our solution for the webserv project of the 42 Core Curriculum. The project is
the result of the colaboration between tblaase, TamLem and aenglert.

Contents

Features

  • user provided config file
  • IO multiplexing: multiplexing of multiple sockets, using kqueue
  • CGI/1.1 (dynamic content)
  • HTTP/1.1 Protocol
    • downloading a file, i.e. showing a static website (GET)
    • uploading a file (POST)
    • deleting a file (DELETE)

Basics

In this project we were challanged to create a webserver with quite a few functionalities that complies with the HTTP/1.1 standard.
This, on its own is already a challenge when you started coding only 1.5 years ago.
But to challange us even more we had to mainly use c++98 + and some c functions for alll the cases c++98 has no alternative like sockets and directory handling.
First challenge was to have a config file that has a lot of functionalities and works kinda like a config file for nginx.
The methods to implement where GET POST and DELETE.
There had to be autoindexing as well as directory/file routing. Especially the directory/file routing is important to hide the actual directory structure of our server to the user that visites a website that is hosted on our server.
One big and also complicated part was the implementation of chunked requests, because of the multiplexing.
For our multiplexing we used kqueue, this enabled us to get the events (i.e. client connect, client send a request) directly from the kernel.
For this reason our webserv is only running on macOS, since kqueue is not implemented in linux.
The implementation of CGI's was a big part of the work too. On our webserv you can have as many cgi-extensions working as you like, as long as the cgi-executable is supplied.
And last but not least we had to make sure our webserv never crashes and gives back appropriate error codes if something goes wrong.

Config File

Theses following variables can be set inside the config file:

  • hostname
  • mutliple ports
  • turn on/off automatic directory listing
  • setup of an index file (server-wide and directory specific)
  • routing for
    • certain directories
    • certain file-extensions
  • allowing methods for certain directories/file-extensions
  • setup for the cgi
  • setup of max_client_body_size (max number of bytes allowed in a single file/chunk)

Also you are able to setup multiple (virtual) servers in the same config file.
This will lead the webserver to be able to run multiple configs at the same time and applying them depending on which host was called in the request.

here you can find an example config with explanations, or check this README, which explains our config-file in-depth.

How to launch

Compile the program via the Makefile by using make in the root directory of the repository.

Use make run to run the server with the default configuration or execute the program with the path to a config-file as argument (in this case the file "test.conf" within the directory "server/config/"):

./webserv server/config/test.conf

For how to setup the config-file checkout the config README and the example config with explanations.

Tester

Inside the directory ourTester you are able to find our own tester that we created to test our project with.
For some tests it uses a custom client (also written in c++ and c) and for some tests it uses curl.
For more information on how to use it check this README of the tester.

About

An HTTP web server in C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published