[Lunar-commits] r19689 - in moonbase/trunk/web: . lighttpd lighttpd/init.d
Florin Braescu
florin at lunar-linux.org
Sun Apr 16 01:06:26 UTC 2006
Author: florin
Date: 2006-04-16 01:06:22 +0000 (Sun, 16 Apr 2006)
New Revision: 19689
Added:
moonbase/trunk/web/lighttpd/
moonbase/trunk/web/lighttpd/BUILD
moonbase/trunk/web/lighttpd/DETAILS
moonbase/trunk/web/lighttpd/init.d/
moonbase/trunk/web/lighttpd/init.d/lighttpd
Log:
a fast and light http server. many thanks to Dave Brown for it's contribution.
Added: moonbase/trunk/web/lighttpd/BUILD
===================================================================
--- moonbase/trunk/web/lighttpd/BUILD (rev 0)
+++ moonbase/trunk/web/lighttpd/BUILD 2006-04-16 01:06:22 UTC (rev 19689)
@@ -0,0 +1,18 @@
+(
+
+ add_priv_user www:www -s /bin/false -c "www" &&
+
+ ./configure --prefix=/usr \
+ --libdir=/usr/lib/lighttpd \
+ $OPTS &&
+ default_make &&
+
+ if [ ! -d /etc/lighttpd ]; then
+ mkdir /etc/lighttpd
+ fi
+
+ if [ ! -f /etc/lighttpd/lighttpd.conf ]; then
+ install -m 644 doc/lighttpd.conf /etc/lighttpd
+ fi
+
+) > $C_FIFO 2>&1
Added: moonbase/trunk/web/lighttpd/DETAILS
===================================================================
--- moonbase/trunk/web/lighttpd/DETAILS (rev 0)
+++ moonbase/trunk/web/lighttpd/DETAILS 2006-04-16 01:06:22 UTC (rev 19689)
@@ -0,0 +1,19 @@
+ MODULE=lighttpd
+ VERSION=1.4.11
+ PKG=$MODULE-$VERSION
+ SOURCE=$PKG.tar.gz
+ WEB_SITE=http://www.lighttpd.net/
+ SOURCE_URL=$WEB_SITE/download/
+ ENTERED=20060416
+ UPDATED=20060416
+ SHORT="A small httpd with some really good marketing"
+
+cat << EOF
+Security, speed, compliance, and flexibility--all of these describe
+LightTPD which is rapidly redefining efficiency of a webserver; as
+it is designed and optimized for high performance environments. With
+a small memory footprint compared to other web-servers, effective
+management of the cpu-load, and advanced feature set (FastCGI, CGI,
+Auth, Output-Compression, URL-Rewriting and many more) LightTPD is
+the perfect solution for every server that is suffering load problems.
+EOF
Added: moonbase/trunk/web/lighttpd/init.d/lighttpd
===================================================================
--- moonbase/trunk/web/lighttpd/init.d/lighttpd (rev 0)
+++ moonbase/trunk/web/lighttpd/init.d/lighttpd 2006-04-16 01:06:22 UTC (rev 19689)
@@ -0,0 +1,14 @@
+#!/bin/bash
+#
+# Startup script for the Apache Web Server
+#
+# chkconfig: - 85 15
+# description: LightTPD is a World Wide Web server. It is used to serve \
+# HTML files and CGI.
+# processname: lighttpd
+# pidfile: /var/run/httpd.pid
+# config: /etc/lighttpd.conf
+
+ARGS="-f /etc/lighttpd/lighttpd.conf"
+
+. /lib/lsb/init-functions $1
More information about the Lunar-commits
mailing list