c_simple_http/README.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

# C Simple HTTP
A simple HTTP/1.1 server written in C.
## Usage
Usage:
-p <port> | --port <port>
--config=<config_file>
--disable-peer-addr-print
2024-09-06 04:16:31 +00:00
## Before Compiling
Make sure that the git submodule(s) are loaded:
git submodule update --init --recursive --depth=1 --no-single-branch
Without this, the project will fail to build.
## Example
# Build the project.
make c_simple_http
2024-09-06 04:47:31 +00:00
# Alternatively, build with cmake.
cmake -S . -B buildDebug && make -C buildDebug
# Run it with the example config.
2024-09-06 04:47:31 +00:00
# Note that the example config was designed such that it must be referred
# to from its parent directory.
./c_simple_http --config=example_config/example.config
2024-09-06 04:47:31 +00:00
# If built with cmake:
./buildDebug/c_simple_http --config=example_config/example.config
# If port is not specified, the server picks a random port.
# This program should print which TCP port it is listening on.
# Sometimes the program will fail to rebind to the same port due to how TCP
# works. Either wait some time or choose a different port.
# Access the website.
# This assumes the server is hosted on port 3000.
curl localhost:3000