No history found.

README:
This is another _really_ minimal ISO C90-ish http server for linux:
- single-threaded (1 connection = 1 request)
- source configured (look for the configuration section in the code)
- epoll-ed
- signalfd-ed (i.e. synchronous)
- direct syscalls (no libc)

Only HEAD and GET methods.

To map a content-type to a file "A", add a file "A.mime" containing the
content-type.
**BIG FAT WARNING** vim editor will add a spurious 0x0a '/n' line feed at the
end of the mime file.

Will chroot in the configured path once started.

Don't forget you need to give root priviledges to the server in order to listen
on port 80.

Look in ulinux/patterns/network_server if you want to ramp up this server with
cloning, etc.
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/sylware/lnanohttp

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/sylware/lnanohttp

Clone this repository using git:
git clone git://git.rocketgit.com/user/sylware/lnanohttp

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main