slackbuilds/network/darkhttpd
Heinz Wiesinger 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-17 21:55:09 +02:00
..
README
darkhttpd.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
darkhttpd.info network/darkhttpd: updated for version 1.13 2021-02-05 07:56:45 +07:00
slack-desc

README

darkhttpd is a simple and secure static HTTP server.

Features:

* Single binary, no other files.
* Standalone, doesn't need inetd or ucspi-tcp.
* No messing around with config files -- all you have to specify is
  the www root.
* Written in C -- efficient and portable.
* Small memory footprint.
* Event loop, single-threaded -- no fork() or pthreads.
* Generates directory listings.
* Supports HTTP GET and HEAD requests.
* Supports Range / partial content. (Try streaming music files or resuming
  a download.)
* Supports If-Modified-Since.
* Supports Keep-Alive connections.
* Can serve 301 redirects based on Host header.
* Uses sendfile() on FreeBSD, Solaris and Linux.
* BSD license.

Security:

* Can log accesses, including Referer and User-Agent.
* Can chroot.
* Can drop privileges.
* Impervious to /../ sniffing.
* Times out idle connections.
* Drops overly long requests.

Limitations:

* Only serves static content -- no CGI.