summaryrefslogtreecommitdiffstats
path: root/network/thttpd/README
diff options
context:
space:
mode:
author Antonio Hernández Blas2011-10-24 00:17:46 +0200
committer Niels Horn2011-10-24 00:17:46 +0200
commit60b413b172340038ef538d20196e662d06ab3778 (patch)
tree7b4a90e32c6d239bc721d5de9afe3423c7036f11 /network/thttpd/README
parent227bd3493f37901930ffb14c1ec45c34080e8830 (diff)
downloadslackbuilds-60b413b172340038ef538d20196e662d06ab3778.tar.gz
network/thttpd: Added (the tiny/turbo/throttling HTTP server)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'network/thttpd/README')
-rw-r--r--network/thttpd/README19
1 files changed, 19 insertions, 0 deletions
diff --git a/network/thttpd/README b/network/thttpd/README
new file mode 100644
index 0000000000..786fa7a4aa
--- /dev/null
+++ b/network/thttpd/README
@@ -0,0 +1,19 @@
+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 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