Skip to content

42-Ikole/Plebserv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Real cool image

Plebserv ๐Ÿ–ฅ

A shitty webserver written by plebians [no plagiarism, no pet @rpet91]

ABOUT ๐Ÿ“

We created a really cool HTTP 1.1 compliant webserver written in C++98

FEATURES โœจ

  • [METHODS]
    • GET
    • POST
    • DELETE
    • PUT
    • OPTIONS
    • HEAD
  • [CGI]
    • Any cgi specified in the config file
  • [PORTS]
    • listen on any port specified
  • [ERROR PAGES]
    • setup custom default error pages
  • [LIMIT CLIENT BODY SIZE]
    • upload limit for client
  • [HTTP REDIRECTION]
    • custom http redirections
  • [AUTO INDEX]
    • turn on directory listing
  • [SESSIONS and COOKIES]
    • session management

CONFIG OPTIONS ๐Ÿ“Œ

  • [listen]
    • listen domain:port port;
  • [server_name]
    • server_name www.domain.nl doamain.nl;
  • [error_page]
    • error_page [error_code] [location];
  • [location]
    • [autoindex]
      • autoindex off;
    • [root]
      • root [location];
    • [limit_except]
    • limit_except [METHOD];
    • [index]
      • index [location1] [location2];
    • [cgi]
      • cgi [extension] [location];
    • [client_max_body_size]
      • client_max_body_size [uint][mod]

CONFIG EXAMPLE ๐Ÿ“œ

server {
  listen phantom.nl:8080 400 5000;

  server_name www.phantom.nl phantom.nl;
	
  error_page 404 /err/404.html;
  error_page 500 /err/rip.html;

  location / {
    client_max_body_size 12k;
    autoindex off;
    index index.php index.html index.htm Welcome.html;
  }

  location /dev/ {
    autoindex off;
    root /www/;
    limit_except GET;
    index index.html;
    cgi .php /usr/local/bin/php-cgi;
  }

  location /HOME {
    autoindex on;
    limit_except GET HEAD POST DELETE OPTIONS TRACE PATCH;
    client_max_body_size 10m;
    index plebserv.php;
  }
}

COLLAB WITH ๐Ÿ’ž

Special Shout Out ๐Ÿ’ฏ

Confusion Counter โ‰๏ธ

3