WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: lighttpd  (Read 1612 times)

Offline Jason W

  • Retired Admins
  • Hero Member
  • *****
  • Posts: 9730
lighttpd
« on: July 07, 2009, 08:03:25 PM »
Thanks to Daniel Barnes we have lighttpd:

Code: [Select]
Title:          lighttpd.tczl
Description:    Light and fast HTTP server
Version:        1.4.23 (19 June 2009)
Author:         Jan Kneschke
Original-site:  http://www.lighttpd.net/
Copying-policy: BSD
Size:           512K
Extension_by:   Daniel Barnes
Comments:       Example chroot script:
                HTTPD=/usr/local/sbin/lighttpd
                HTTPD_ROOT=/www
                HTTPD_CONF=$HTTPD_ROOT/lighttpd.conf
                cat << EOF > $HTTPD_CONF
                server.document-root = "/htdocs"
                server.port = 80
                server.username = "nobody"
                server.groupname = "nogroup"
                server.chroot = "$HTTPD_ROOT"
                EOF
                exec $HTTPD -D -f $HTTPD_CONF
Change-log:     ---
Current:        2009/07/02 - Initial Release           



Code: [Select]
Title:          lighttpd.tcel
Description:    Light and fast HTTP server
Version:        1.4.23 (19 June 2009)
Author:         Jan Kneschke
Original-site:  http://www.lighttpd.net/
Copying-policy: BSD
Size:           417K
Extension_by:   Daniel Barnes
Comments:       Example chroot script:
                HTTPD=/usr/local/sbin/lighttpd
                HTTPD_ROOT=/www
                HTTPD_CONF=$HTTPD_ROOT/lighttpd.conf
                cat << EOF > $HTTPD_CONF
                server.document-root = "/htdocs"
                server.port = 80
                server.username = "nobody"
                server.groupname = "nogroup"
                server.chroot = "$HTTPD_ROOT"
                EOF
                exec $HTTPD -D -f $HTTPD_CONF
Change-log:     ---
Current:        2009/07/02 - Initial Release           



Offline robc

  • Sr. Member
  • ****
  • Posts: 447
Re: lighttpd
« Reply #1 on: February 24, 2010, 02:09:11 PM »
Could the extension maintainer update this to the latest stable release? there are a lot of important security fixes since this version.

If not I can do it next week...

Thanks
"Never give up! Never surrender!" - Commander Peter Quincy Taggart

"Make it so." - Captain Picard

Offline danielibarnes

  • Hero Member
  • *****
  • Posts: 548
Re: lighttpd
« Reply #2 on: February 24, 2010, 03:28:56 PM »
I have 1.4.25 1.4.26 ready, but I am waiting for the 2.9 build environment for my final build.
« Last Edit: February 24, 2010, 07:01:35 PM by danielibarnes »

Offline robc

  • Sr. Member
  • ****
  • Posts: 447
Re: lighttpd
« Reply #3 on: February 24, 2010, 03:43:11 PM »
I have 1.4.25 ready, but I am waiting for the 2.9 build environment for my final build.
I suggest using 1.4.26, http://redmine.lighttpd.net/versions/show/23
"Never give up! Never surrender!" - Commander Peter Quincy Taggart

"Make it so." - Captain Picard

Offline Jason W

  • Retired Admins
  • Hero Member
  • *****
  • Posts: 9730
Re: lighttpd
« Reply #4 on: March 05, 2010, 05:56:47 PM »
Thanks to Daniel Barnes for an update:

Code: [Select]
Title: lighttpd.tcz
Description: Light and fast HTTP server
Version: 1.4.26
Author: Jan Kneschke
Original-site: http://www.lighttpd.net/
Copying-policy: BSD
Size: 480.0K
Extension_by: Daniel Barnes
Comments: The following plugins require additional extensions:
mod_auth: libldap.tcz
mod_mysql_vhost: mysql.tcz
mod_webdav: libxml2.tcz sqlite3.tcz

Example chroot script:
HTTPD=/usr/local/sbin/lighttpd
HTTPD_ROOT=/www
HTTPD_CONF=$HTTPD_ROOT/lighttpd.conf
cat << EOF > $HTTPD_CONF
server.document-root = "/htdocs"
server.port = 80
server.username = "nobody"
server.groupname = "nogroup"
server.chroot = "$HTTPD_ROOT"
EOF
exec $HTTPD -D -f $HTTPD_CONF
Change-log: 2009/07/02 - Initial release
Current: 2010/02/26 - Update to version 1.4.26 and enable ALL Plugins/Features