summaryrefslogtreecommitdiffstats
path: root/network/lighttpd/README
diff options
context:
space:
mode:
author Daniel de Kok <danieldk@pobox.com>2010-05-11 15:01:30 +0200
committer Michiel van Wessem <michiel@slackbuilds.org>2010-05-11 15:01:30 +0200
commit6a2e7cb0c583c0ad634890fc732589f747ac400f (patch)
treea3f1f20b7f67c6fc4527ad9e460c494710c7082d /network/lighttpd/README
parenta46972cf527a97b75c670ace2ed30f7eca85af6e (diff)
downloadslackbuilds-6a2e7cb0c583c0ad634890fc732589f747ac400f.tar.gz
slackbuilds-6a2e7cb0c583c0ad634890fc732589f747ac400f.tar.xz
network/lighttpd: Initial import
Diffstat (limited to 'network/lighttpd/README')
-rw-r--r--network/lighttpd/README36
1 files changed, 36 insertions, 0 deletions
diff --git a/network/lighttpd/README b/network/lighttpd/README
new file mode 100644
index 0000000000..5622d52f80
--- /dev/null
+++ b/network/lighttpd/README
@@ -0,0 +1,36 @@
+lighttpd is a fast, secure, and flexible webserver. It is optimized
+for high-performance environments, and provides an extensive feature
+set, including FastCGI, CGI, Auth, output compression, and URL
+rewriting support.
+
+By default, this package uses the "lighttpd" user and group to run
+lighttpd as a unpriviliged process. The script will exit if these
+do not exist on this machine. We recommend using the following
+UID and GID as they do not conflict with any stock Slackware users
+and groups, nor with any added by other slackbuilds.org scripts.
+
+ lighttpd
+ ========
+ User: lighttpd UID: 208 GID: 208
+ Group: lighttpd GID: 208
+
+After that, lighttpd can be started and stopped through the
+initialization script that is provided:
+
+/etc/rc.d/rc.lighttpd start
+/etc/rc.d/rc.lighttpd stop
+
+If you would like to start lighttpd automatically when the system
+is booted, add the following lines to /etc/rc.d/rc.local:
+
+ if [ -x /etc/rc.d/rc.lighttpd ]; then
+ /etc/rc.d/rc.lighttpd start
+ fi
+
+Conversely, add the following lines to /etc/rc.d/rc.local_shutdown
+to stop lighttpd on system shutdown.
+
+ if [ -x /etc/rc.d/rc.lighttpd ]; then
+ /etc/rc.d/rc.lighttpd stop
+ fi
+