Skip to content

v1.0.1 CMake support

Latest
Compare
Choose a tag to compare
@DF0ster DF0ster released this 11 Jan 11:56
· 1 commit to main since this release
5fe515c

Instructions

  1. Compile the Server:
    Ensure you have OpenSSL installed on your system. Then, compile the project using the following commands:
    mkdir build
    cd build
    cmake ..
    make

  2. Run the Server:
    ./HttpServer

  3. HTTPS Setup:
    Use self-signed certificates for HTTPS support. You can create self-signed certificates using OpenSSL:
    openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout server.key -out server.crt

  4. Custom Configuration:
    Modify configurations as needed (e.g., port number, static directory).