wok rev 639
Up: lighttpd (1.4.19)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Apr 22 00:47:53 2008 +0200 (2008-04-22) |
parents | 6ef6f82c735a |
children | 817963b0bca0 |
files | lighttpd-modules/receipt lighttpd/receipt lighttpd/stuff/etc/lighttpd/lighttpd.conf |
line diff
1.1 --- a/lighttpd-modules/receipt Tue Apr 22 00:20:09 2008 +0200 1.2 +++ b/lighttpd-modules/receipt Tue Apr 22 00:47:53 2008 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="lighttpd-modules" 1.7 -VERSION="1.4.18" 1.8 +VERSION="1.4.19" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Complementary modules for LightTPD Web server." 1.11 MAINTAINER="pankso@slitaz.org"
2.1 --- a/lighttpd/receipt Tue Apr 22 00:20:09 2008 +0200 2.2 +++ b/lighttpd/receipt Tue Apr 22 00:47:53 2008 +0200 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="lighttpd" 2.7 -VERSION="1.4.18" 2.8 +VERSION="1.4.19" 2.9 CATEGORY="network" 2.10 SHORT_DESC="Fast and light HTTP Web server." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 -DEPENDS="php" 2.13 +DEPENDS="pcre" 2.14 BUILD_DEPENDS="pcre-dev" 2.15 +SUGGESTED="lighttpd-modules php perl python" 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 WEB_SITE="http://www.lighttpd.net/" 2.18 WGET_URL="http://www.lighttpd.net/download/$TARBALL" 2.19 @@ -28,9 +29,13 @@ 2.20 compile_rules() 2.21 { 2.22 cd $src 2.23 - ./configure -enable-shared --disable-ipv6 --prefix=/usr \ 2.24 - --libdir=/usr/lib/lighttpd --mandir=/usr/share/man \ 2.25 - $CONFIGURE_ARGS 2.26 + ./configure \ 2.27 + --enable-shared \ 2.28 + --disable-ipv6 \ 2.29 + --prefix=/usr \ 2.30 + --libdir=/usr/lib/lighttpd \ 2.31 + --mandir=/usr/share/man \ 2.32 + $CONFIGURE_ARGS 2.33 make 2.34 make DESTDIR=$PWD/_pkg install 2.35 }
3.1 --- a/lighttpd/stuff/etc/lighttpd/lighttpd.conf Tue Apr 22 00:20:09 2008 +0200 3.2 +++ b/lighttpd/stuff/etc/lighttpd/lighttpd.conf Tue Apr 22 00:47:53 2008 +0200 3.3 @@ -23,7 +23,7 @@ 3.4 # Server header. 3.5 # Be nice and keep it at lighttpd and SliTaz GNU/Linux. 3.6 # 3.7 -server.tag = "lighttpd/1.4.18 (SliTaz GNU/Linux)" 3.8 +server.tag = "lighttpd (SliTaz GNU/Linux)" 3.9 3.10 # Directory listings. 3.11 # 3.12 @@ -89,7 +89,7 @@ 3.13 "mod_rewrite", 3.14 "mod_status", 3.15 "mod_userdir", 3.16 - "mod_fastcgi", 3.17 + #"mod_fastcgi", 3.18 ) 3.19 3.20 # User directory module. 3.21 @@ -111,16 +111,17 @@ 3.22 # 3.23 $HTTP["url"] =~ "/cgi-bin/" { 3.24 cgi.assign = ( 3.25 - ".sh" => "/bin/sh" 3.26 + ".sh" => "/bin/sh", 3.27 + ".cgi" => "/bin/sh" 3.28 ) 3.29 } 3.30 3.31 # Fast CGI modules for PHP. 3.32 # 3.33 -fastcgi.server = ( ".php" => (( 3.34 - "bin-path" => "/usr/bin/php-cgi", 3.35 - "socket" => "/tmp/php.socket" 3.36 - ))) 3.37 +#fastcgi.server = ( ".php" => (( 3.38 + #"bin-path" => "/usr/bin/php-cgi", 3.39 + #"socket" => "/tmp/php.socket" 3.40 + #))) 3.41 3.42 # Alias urls for localhost (doc, examples and PHP info). 3.43 #