diff options
author | Antonio Hernández Blas <hba.nihilismus@gmail.com> | 2010-05-13 01:00:23 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 01:00:23 +0200 |
commit | 31aa3ec3e0153775e449bcdfeaba83b156746c93 (patch) | |
tree | be8ee615ec4a3195c01c409df29f6eb1edfab7d0 /network/thttpd/README | |
parent | 70696b7acf8911f58e6bce1d69c694c3bb233336 (diff) | |
download | slackbuilds-31aa3ec3e0153775e449bcdfeaba83b156746c93.tar.gz |
network/thttpd: Added to 13.0 repository
Diffstat (limited to 'network/thttpd/README')
-rw-r--r-- | network/thttpd/README | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/network/thttpd/README b/network/thttpd/README new file mode 100644 index 0000000000..39c238c0ae --- /dev/null +++ b/network/thttpd/README @@ -0,0 +1,24 @@ +thttpd (the tiny/turbo/throttling HTTP server) + +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 SalckBuild for example as: + # WEBDIR='/opt/www' sh thttpd.SlackBuild +for example. + +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 + +See http://slackbuilds.org/uid_gid.txt |