An open API service indexing awesome lists of open source software.

https://github.com/bl0nder/http-server

A simple HTTP webserver in C
https://github.com/bl0nder/http-server

c http-server socket-programming

Last synced: about 1 month ago
JSON representation

A simple HTTP webserver in C

Awesome Lists containing this project

README

          

# 🌐 HTTP Server in C

A simple webserver in C.

Compile:

```bash
gcc http_server.c -o http_server
```

Run:

```bash
./http_server [port]
```

Go to `127.0.0.1:port/test` for a simple webpage being served. Any other route (including `127.0.0.1:port/`) will return a `404: Page not found`.