aakar-mutha / cpp-server

A basic Web Server written from scratch in C++.

Home Page:https://cpp-server.fly.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++ Server

A basic Web Server written from scratch in C++.

The functionality of this server depends on the POCO Library.

To install POCO:

    curl https://pocoproject.org/releases/poco-1.13.3/poco-1.13.3.zip -o poco.zip
    unzip poco.zip
    cd poco-1.13.3
    mkdir cmake-build
    cd cmake-build
    cmake .. 
    cmake --build . --target install

To run the server locally:

    git clone https://github.com/aakar-mutha/cpp-server.git
    cd cpp-server
    mkdir build
    cmake ..
    make
    ./serve

Lastly, thank you for coming here. Please let me know how I can improve it. The website that you see here is an old version I had made to learn HTML. CSS and JS. Hit me up on Linkedin or Instagram.

About

A basic Web Server written from scratch in C++.

https://cpp-server.fly.dev

License:MIT License


Languages

Language:C++ 27.8%Language:HTML 26.3%Language:Makefile 23.3%Language:CSS 16.7%Language:C 2.9%Language:CMake 1.5%Language:JavaScript 1.4%