https://github.com/lukereichold/http-server
A simple threaded http server in C
https://github.com/lukereichold/http-server
c http http-server
Last synced: about 1 month ago
JSON representation
A simple threaded http server in C
- Host: GitHub
- URL: https://github.com/lukereichold/http-server
- Owner: lukereichold
- License: mit
- Created: 2014-12-11T06:33:07.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-14T17:22:52.000Z (over 7 years ago)
- Last Synced: 2025-10-11T07:52:59.458Z (6 months ago)
- Topics: c, http, http-server
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 7
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
http-server
===========
A simple threaded http server in C
### Example Usage - Compile & Run
gcc -pthread http-server.c -o http-server
./http-server 8090 path/to/document-root
Currently only supports GET requests and 10 preset content types.