B. Watson 3cc2bd78f2 network/thttpd: Wrap README at 72 columns. 2 years ago
..
patches 60c75ff791 network/thttpd: Updated for version 2.26. 10 years ago
README 3cc2bd78f2 network/thttpd: Wrap README at 72 columns. 2 years ago
doinst.sh 60b413b172 network/thttpd: Added (the tiny/turbo/throttling HTTP server) 13 years ago
rc.thttpd 60b413b172 network/thttpd: Added (the tiny/turbo/throttling HTTP server) 13 years ago
slack-desc 610e8461bb various: Fix slack-desc formatting and comment nit picks. 11 years ago
thttpd.SlackBuild 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var 3 years ago
thttpd.conf 60c75ff791 network/thttpd: Updated for version 2.26. 10 years ago
thttpd.info 4c5013baf1 network/thttpd: Updated for version 2.29. 6 years ago
thttpd.logrotate 60b413b172 network/thttpd: Added (the tiny/turbo/throttling HTTP server) 13 years ago

README

thttpd is a simple, small, portable, fast, and secure HTTP server.
Simple: It handles only the minimum necessary to implement HTTP/1.1.
Well, maybe a little more than the minimum. Small: It has a very
small run-time size, since it does not fork and is very careful about
memory allocation. Portable: It compiles cleanly on most any Unix-like
OS. Fast: In typical use it's about as fast as the best full-featured
servers. Secure: It goes to great lengths to protect the web server
machine against attacks and breakins from other sites.

Notes:

By default the directory to serve through HTTP will be
'/var/www/thttpd'. If you want to change it, execute the SlackBuild as:
# WEBDIR='/opt/www' sh thttpd.SlackBuild

To build and use this package the user/group 'thttpd' is required to
exists in your system. You can add it with:
# groupadd -g 227 thttpd
# useradd -u 227 -g 227 -c "User for thttpd" -d / -s /bin/false thttpd