summaryrefslogtreecommitdiffstats
path: root/network/lighttpd2
diff options
context:
space:
mode:
Diffstat (limited to 'network/lighttpd2')
-rw-r--r--network/lighttpd2/README30
-rw-r--r--network/lighttpd2/README.SLACKWARE53
-rw-r--r--network/lighttpd2/conf/angel.conf6
-rw-r--r--network/lighttpd2/conf/lighttpd.conf95
-rw-r--r--network/lighttpd2/conf/lighttpd2.logrotate32
-rw-r--r--network/lighttpd2/conf/php-fpm.lua10
-rw-r--r--network/lighttpd2/conf/rc.lighttpd270
-rw-r--r--network/lighttpd2/doinst.sh37
-rw-r--r--network/lighttpd2/lighttpd2.SlackBuild153
-rw-r--r--network/lighttpd2/lighttpd2.info10
-rw-r--r--network/lighttpd2/slack-desc19
11 files changed, 0 insertions, 515 deletions
diff --git a/network/lighttpd2/README b/network/lighttpd2/README
deleted file mode 100644
index 436ac72ecd..0000000000
--- a/network/lighttpd2/README
+++ /dev/null
@@ -1,30 +0,0 @@
-lighttpd2 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.
-
-This version currently is a work in progress: it's not ready for
-production: only for interested people.
-
-
-Optional Dependencies
-
-libunwind is an optional dependency (for backtraces on assert
-failures): after having it installed, build this passing the script
-the UNWIND=yes flag.
-
-
-Groupname and Username
-
-You must have the 'lighttpd' group and user to run this script,
-for example:
-
- groupadd -g 208 lighttpd
- useradd -u 208 -g lighttpd -d /var/www lighttpd
-
-
-Configuration
-
-Be sure to see README.SLACKWARE (in this directory, and also installed
-with the package documentation) for configuration and setup
-information.
diff --git a/network/lighttpd2/README.SLACKWARE b/network/lighttpd2/README.SLACKWARE
deleted file mode 100644
index 710dbaadc4..0000000000
--- a/network/lighttpd2/README.SLACKWARE
+++ /dev/null
@@ -1,53 +0,0 @@
-README.SLACKWARE For lighttpd2
-
-lighttpd2 can be started and stopped through the initialization
-script that is provided:
-
- /etc/rc.d/rc.lighttpd2 start
- /etc/rc.d/rc.lighttpd2 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.lighttpd2 ]; then
- /etc/rc.d/rc.lighttpd2 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.lighttpd2 ]; then
- /etc/rc.d/rc.lighttpd2 stop
- fi
-
-* PHP users:
-
-This slackbuild is already preconfigured (but is disabled by default)
-for an use with php in /etc/lighttpd2/lighttpd.conf and uses php-fpm
-already in Slackware.
-
-You have to make two changes to /etc/php-fpm.conf, namely
-
- user = lighttpd
- listen = /var/run/lighttpd2/php-fpm.sock
- listen.owner = lighttpd
- listen.mode = 0660
-
-Then make /etc/rc.d/rc.php-fpm executable and start it (for an
-automatic start/stop, do as for the rc.lighttpd2 script).
-
-Enable php uncommenting the last line of /etc/lighttpd2/lighttpd.conf
-(you might want to have a look at the "index" directive too).
-
-The php.ini used will be /etc/php.ini: you can also override options
-set in this file adding them at the end of /etc/php-fpm.conf
-(you will find some examples there).
-
-Note: Slackware's default php package is meant to work with httpd
-(apache), so its session folder has permissions root:apache.
-It works fine with lighttpd assumed the addition of the user lighttpd
-run as to the "apache" group. If you have choosen the user "lighttpd"
-
- gpasswd -a lighttpd apache
-
-Otherwise, php won't be able to use $_SESSION.
diff --git a/network/lighttpd2/conf/angel.conf b/network/lighttpd2/conf/angel.conf
deleted file mode 100644
index d02e674fe5..0000000000
--- a/network/lighttpd2/conf/angel.conf
+++ /dev/null
@@ -1,6 +0,0 @@
-user "lighttpd";
-group "lighttpd";
-
-max_open_files 16384;
-
-copy_env ( "PATH" );
diff --git a/network/lighttpd2/conf/lighttpd.conf b/network/lighttpd2/conf/lighttpd.conf
deleted file mode 100644
index 1a62342940..0000000000
--- a/network/lighttpd2/conf/lighttpd.conf
+++ /dev/null
@@ -1,95 +0,0 @@
-# Sample /etc/lighttpd2/lighttpd.conf file
-# Assembled and commented by Matteo Bernardini <ponce@slackbuilds.org>
-
-# Default modules here should cover most needs: if you want to cut
-# down some, consider that mod_access and mod_accesslog are mandatory.
-# http://redmine.lighttpd.net/projects/lighttpd2/wiki/Modules
-setup {
- module_load ( "mod_fastcgi", "mod_status", "mod_access", "mod_accesslog", "mod_dirlist", "mod_deflate", "mod_redirect", "mod_rewrite", "mod_vhost", "mod_lua" );
-# mod_access,
-# mod_accesslog,
-# mod_auth,
-# mod_balance,
-# mod_cache_disk_etag,
-# mod_debug,
-# mod_deflate,
-# mod_dirlist,
-# mod_expire,
-# mod_fastcgi,
-# mod_flv,
-# mod_fortune,
-# mod_limit,
-# mod_lua,
-# mod_memcached,
-# mod_openssl,
-# mod_progress,
-# mod_proxy,
-# mod_redirect,
-# mod_rewrite,
-# mod_scgi,
-# mod_status,
-# mod_userdir,
-# mod_vhost,
-
- lua.plugin "/etc/lighttpd2/php-fpm.lua";
-
- listen "0.0.0.0:80";
- listen "[::]:80";
-
- log ["debug" => "", "*" => "/var/log/lighttpd2/error.log"];
- accesslog "/var/log/lighttpd2/access.log";
- accesslog.format "%h %V %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"";
-
- static.exclude_extensions ( ".php", ".pl", ".fcgi", "~", ".inc" );
-}
-
-# http://redmine.lighttpd.net/projects/lighttpd2/wiki/Conditions
-
-# Run php through php-fpm: be sure to read README.SLACKWARE
-# http://redmine.lighttpd.net/projects/lighttpd2/wiki/Howto_PHP
-php = {
- phpfpm { fastcgi "unix:/var/run/lighttpd2/php-fpm.sock"; };
-};
-
-if req.path == "/status" { status.info; }
-
-include "/etc/lighttpd2/mimetypes.conf";
-
-docroot "/var/www/htdocs-lighttpd";
-
-# If you install phpmyadmin from the SBo script, it should go there.
-# Uncomment below, after having installed.
-#alias ( "/phpmyadmin" => "/var/www/htdocs/phpmyadmin" );
-
-# Directory listings are enabled by default only for an eventual
-# "pub" folder in the docroot: change as needed.
-# http://redmine.lighttpd.net/projects/lighttpd2/wiki/Mod_dirlist
-if req.path =~ "^/pub/" {
- dirlist;
-}
-
-# Directory index files: this commented below can be useful if you
-# enable php.
-#index ( "index.php", "index.html" );
-index ( "index.html" );
-
-# If you want to use urls like http://example.com/index.php/some/path
-# (using your php files like directories), you need this (ex. wordpress)
-#pathinfo;
-
-# Some useful rules to avoid access to sensitive files from remote.
-# This example still applies to wordpress
-#if req.remoteip != "127.0.0.1" {
-# if req.path =~ "^/wp-includes/" { access.deny; }
-#}
-
-# Deny access to some file-extensions
-# ~ is for backupfiles from vi, emacs, joe, ...
-# .inc is often used for code includes which should in general not be
-# part of the document-root
-if phys.path =$ "~" or phys.path =$ ".inc" {
- if phys.is_file { access.deny; }
-}
-
-# Uncomment this to enable php
-#php;
diff --git a/network/lighttpd2/conf/lighttpd2.logrotate b/network/lighttpd2/conf/lighttpd2.logrotate
deleted file mode 100644
index a85c1efc23..0000000000
--- a/network/lighttpd2/conf/lighttpd2.logrotate
+++ /dev/null
@@ -1,32 +0,0 @@
-/var/log/lighttpd2/access.log /var/log/lighttpd2/error.log {
- daily
- missingok
- copytruncate
- rotate 30
- create 0644 @LIGHTTPD_USER@ root
- compress
- notifempty
- su lighttpd root
- sharedscripts
- postrotate
- if [ -x /etc/rc.d/rc.lighttpd2 -a -f /var/run/lighttpd2/lighttpd2.pid ]; then
- /etc/rc.d/rc.lighttpd2 restart
- fi
- endscript
-}
-
-/var/log/lighttpd2/lighttpd2.log {
- daily
- missingok
- copytruncate
- rotate 30
- create 0644 root root
- compress
- notifempty
- sharedscripts
- postrotate
- if [ -x /etc/rc.d/rc.lighttpd2 -a -f /var/run/lighttpd2/lighttpd2.pid ]; then
- /etc/rc.d/rc.lighttpd2 restart
- fi
- endscript
-}
diff --git a/network/lighttpd2/conf/php-fpm.lua b/network/lighttpd2/conf/php-fpm.lua
deleted file mode 100644
index f26bb9d796..0000000000
--- a/network/lighttpd2/conf/php-fpm.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-local function phpfpm(act)
- return action.when(physical.path:suffix(".php"),
- action.when(physical.is_file:is(), act),
- action.when(request.path:eq("/fpm-status"), act)
- )
-end
-
-actions = {
- ["phpfpm"] = phpfpm,
-}
diff --git a/network/lighttpd2/conf/rc.lighttpd2 b/network/lighttpd2/conf/rc.lighttpd2
deleted file mode 100644
index 635092e071..0000000000
--- a/network/lighttpd2/conf/rc.lighttpd2
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2007, Daniel de Kok <moc.mikciat@leinad>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Adapted for lighttpd2 by Matteo Bernardini <ponce@slackbuilds.org>
-
-LIGHTTPD=/usr/sbin/lighttpd2
-LIGHTTPD_OPTIONS="-c /etc/lighttpd2/angel.conf"
-PIDOF_WORKER=$(pidof lighttpd2-worker)
-PIDOF=$(pidof lighttpd2)
-
-lighttpd_start() {
- echo "Starting lighttpd2: $LIGHTTPD"
- if [ "$PIDOF" ]; then
- echo "Already running!"
- return
- fi
- $LIGHTTPD $LIGHTTPD_OPTIONS >> /var/log/lighttpd2/lighttpd2.log 2>&1 &
- sleep 2
- echo $(pidof lighttpd2) > /var/run/lighttpd2/lighttpd2.pid
-}
-
-lighttpd_stop() {
- echo "Stopping lighttpd2: $LIGHTTPD"
- if [ "$PIDOF" ]; then
- kill $PIDOF
- sleep 2
- rm /var/run/lighttpd2/lighttpd2.pid
- else
- echo "Not running!"
- fi
-}
-
-lighttpd_restart() {
- lighttpd_stop
- PIDOF=
- sleep 2
- lighttpd_start
-}
-
-case "$1" in
-'start')
- lighttpd_start
- ;;
-'stop')
- lighttpd_stop
- ;;
-restart)
- lighttpd_restart
- ;;
-*)
- echo "usage $0 start|stop|restart"
-esac
diff --git a/network/lighttpd2/doinst.sh b/network/lighttpd2/doinst.sh
deleted file mode 100644
index a2bfef2076..0000000000
--- a/network/lighttpd2/doinst.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- rm $NEW
- fi
-}
-
-preserve_perms() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ -e $OLD ]; then
- cp -a $OLD ${NEW}.incoming
- cat $NEW > ${NEW}.incoming
- mv ${NEW}.incoming $NEW
- fi
- config $NEW
-}
-
-config etc/lighttpd2/lighttpd.conf.new
-config etc/lighttpd2/angel.conf.new
-config etc/lighttpd2/mimetypes.conf.new
-config etc/lighttpd2/php-fpm.lua.new
-config etc/logrotate.d/lighttpd2.new
-preserve_perms etc/rc.d/rc.lighttpd2.new
-
-# Create dummy logfiles, but throw them away if some are already here:
-for i in access error ; do
- if [ -e var/log/lighttpd2/$i.log ]; then
- rm -f var/log/lighttpd2/$i.log.new
- else
- mv var/log/lighttpd2/$i.log.new \
- var/log/lighttpd2/$i.log
- fi
-done
diff --git a/network/lighttpd2/lighttpd2.SlackBuild b/network/lighttpd2/lighttpd2.SlackBuild
deleted file mode 100644
index 263b4e8d25..0000000000
--- a/network/lighttpd2/lighttpd2.SlackBuild
+++ /dev/null
@@ -1,153 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for lighttpd2
-
-# Copyright (c) 2007 Daniel de Kok <moc.mikciat@leinad>
-# Copyright (c) 2012-2018 Matteo Bernardini <ponce@slackbuilds.org>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Twisted for lighttpd2 by Matteo Bernardini <ponce@slackbuilds.org>
-
-PRGNAM=lighttpd2
-VERSION=${VERSION:-20180908_bda1a90}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-## lighttpd user & group *MUST* exist before package creation
-# See http://slackbuilds.org/uid_gid.txt for current recomendations.
-LIGHTTPD_USER=${LIGHTTPD_USER:-lighttpd}
-LIGHTTPD_GROUP=${LIGHTTPD_GROUP:-lighttpd}
-
-bailout() {
- printf " The $LIGHTTPD_GROUP group and/or $LIGHTTPD_USER user account
- does not exist. You should create it/them with the following:
- groupadd -g 208 $LIGHTTPD_GROUP
- useradd -u 208 -g $LIGHTTPD_GROUP -d /var/www $LIGHTTPD_USER\n"
- exit 1
-}
-
-if ! grep -q ^$LIGHTTPD_GROUP: /etc/group 2>/dev/null ; then
- bailout
-elif ! grep -q ^$LIGHTTPD_USER: /etc/passwd 2>/dev/null ; then
- bailout
-fi
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-UNWIND=${UNWIND:-"no"}
-if [ "$UNWIND" = "yes" ]; then unwind="--with-libunwind"; else unwind=""; fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-sh autogen.sh
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX}/$PRGNAM \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --with-lua \
- --with-sni \
- --with-zlib \
- --with-bzip2 \
- --with-gnutls \
- --with-openssl \
- $unwind \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-mkdir -p $PKG/var/cache/$PRGNAM $PKG/var/log/$PRGNAM $PKG/var/run/$PRGNAM
-chmod 0770 $PKG/var/cache/$PRGNAM $PKG/var/log/$PRGNAM $PKG/var/run/$PRGNAM
-( cd $PKG/var/log/$PRGNAM ; touch access.log.new error.log.new )
-chown -R $LIGHTTPD_USER:$LIGHTTPD_GROUP $PKG/var/cache/$PRGNAM $PKG/var/run/$PRGNAM
-chown -R $LIGHTTPD_USER:root $PKG/var/log/$PRGNAM
-
-install -D -m 0755 $CWD/conf/rc.$PRGNAM $PKG/etc/rc.d/rc.$PRGNAM.new
-install -D -m 0644 $CWD/conf/lighttpd.conf $PKG/etc/$PRGNAM/lighttpd.conf.new
-install -m 0644 $CWD/conf/angel.conf $PKG/etc/$PRGNAM/angel.conf.new
-install -m 0644 contrib/mimetypes.conf $PKG/etc/$PRGNAM/mimetypes.conf.new
-install -m 0644 $CWD/conf/php-fpm.lua $PKG/etc/$PRGNAM/php-fpm.lua.new
-install -D -m 0644 contrib/default.html $PKG/var/www/htdocs-lighttpd/index.html
-install -D -m 0644 $CWD/conf/$PRGNAM.logrotate $PKG/etc/logrotate.d/$PRGNAM.new
-mkdir -p $PKG/etc/logrotate.d
-sed "s|@LIGHTTPD_USER@|$LIGHTTPD_USER|" \
- $CWD/conf/$PRGNAM.logrotate > $PKG/etc/logrotate.d/$PRGNAM.new
-
-sed -i \
- -e "s|user \"lighttpd|user \"$LIGHTTPD_USER|" \
- -e "s|group \"lighttpd|group \"$LIGHTTPD_GROUP|" \
- $PKG/etc/$PRGNAM/angel.conf.new
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYING doc/* $CWD/README.SLACKWARE $PKG/usr/doc/$PRGNAM-$VERSION
-rm -f $PKG/usr/doc/$PRGNAM-$VERSION/Makefile*
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/network/lighttpd2/lighttpd2.info b/network/lighttpd2/lighttpd2.info
deleted file mode 100644
index c987f098b8..0000000000
--- a/network/lighttpd2/lighttpd2.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="lighttpd2"
-VERSION="20180908_bda1a90"
-HOMEPAGE="http://www.lighttpd.net"
-DOWNLOAD="http://ponce.cc/slackware/sources/repo/lighttpd2-20180908_bda1a90.tar.xz"
-MD5SUM="6c9dd8adc0ae1cf0f61dc9792a474cf3"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="libev lua ragel"
-MAINTAINER="Matteo Bernardini"
-EMAIL="ponce@slackbuilds.org"
diff --git a/network/lighttpd2/slack-desc b/network/lighttpd2/slack-desc
deleted file mode 100644
index 3c111f99f7..0000000000
--- a/network/lighttpd2/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-lighttpd2: lighttpd2 (Light, fast, and secure webserver)
-lighttpd2:
-lighttpd2: lighttpd2 is a fast, secure, and flexible webserver. It is optimized
-lighttpd2: for high-performance environments, and provides an extensive feature
-lighttpd2: set, including FastCGI, CGI, Auth, output compression, and URL
-lighttpd2: rewriting support.
-lighttpd2:
-lighttpd2: Homepage: http://www.lighttpd.net/
-lighttpd2:
-lighttpd2:
-lighttpd2: