diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-15 23:04:31 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-09-15 23:04:31 +0000 |
commit | 5b696bd4102a099076f36e46479a34143c2a6f9a (patch) | |
tree | f56548d0774dcc70a620c04757738d00266e8530 /www/Makefile | |
parent | 058bc54315021a93358f612734a8a22b45c2c07f (diff) |
XS-HTTPD is a WWW server that has the following features:
- It is pronounced as "access-HTTP-daemon"
- It is SMALL (very small in fact: a factor two to three smaller than
normal servers on disk and in memory)
- It is FAST (because it is so small and does not do unnecessary things)
- Uses very little CPU time
- Configurable (configuration compiled in to make it small, but largely
overridable on the command line)
- Runs user CGI binaries under their own user ID
- Gets users' pages under their own user ID, allowing them to really
have protected pages (using the built-in authentication mechanism)
- Does not fork for every connection (has a fixed number of servers),
only to replace a lost server (in case of timeouts).
- Comes with some other useful programs
- Offers Server-Side Includes for many common tasks, including built-in
page counters (text or graphical)
- Supports PHP and other interpreted file formats
- Supports automatic decompression to save diskspace and bandwidth
- Serves SSL (https) and http connections through the same daemon
- Full support for IPv6
PR: ports/84314
Submitted by: Ed Schouten <ed@fxq.nl>
Notes
Notes:
svn path=/head/; revision=142855
Diffstat (limited to 'www/Makefile')
-rw-r--r-- | www/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index dd62818b11f9..3ed3e58c4153 100644 --- a/www/Makefile +++ b/www/Makefile @@ -849,6 +849,7 @@ SUBDIR += xist SUBDIR += xitami SUBDIR += xpath2rss + SUBDIR += xshttpd SUBDIR += yaws SUBDIR += zerowait-httpd SUBDIR += znavigator |