opt/lighttpd
Simone Rota 558878759a [notify] lighttpd: updated to 1.4.15
1.4.14 contains fixes for one local and one remote vulnerabilties:

http://lighttpd.net/2007/4/13/lighttpd-1-4-14-released
2007-04-14 12:35:10 +02:00
..
.footprint [notify] lighttpd: updated to 1.4.15 2007-04-14 12:35:10 +02:00
.md5sum [notify] lighttpd: updated to 1.4.15 2007-04-14 12:35:10 +02:00
lighttpd.conf create branch for 2.2 2006-02-23 15:26:10 +00:00
lighttpd.rc create branch for 2.2 2006-02-23 15:26:10 +00:00
Pkgfile [notify] lighttpd: updated to 1.4.15 2007-04-14 12:35:10 +02:00
README create branch for 2.2 2006-02-23 15:26:10 +00:00

REQUIREMENTS

PRE-INSTALL

POST-INSTALL

lighttpd runs as a different user ('lighttpd') by default for security reasons.
Do the following after installing the port:

  useradd -s /bin/false lighttpd
  groupadd lighttpd
  touch /var/www/logs/access_log
  touch /var/www/logs/error_log
  chown lighttpd:lighttpd /var/www/logs/*

If you wish to enable SSL support, uncomment the relevant lines in 
/etc/lighttpd.conf and generate a self-signed certificate:

  openssl req -new -x509 \
  -keyout /etc/ssl/certs/lighttpd.pem -out /etc/ssl/certs/lighttpd.pem \
  -days 365 -nodes

PRECAUTION