[pkg-lighttpd] r468 - in lighttpd/trunk/debian: . conf-available

Olaf van der Spek olafvdspek-guest at alioth.debian.org
Tue Jun 15 20:50:23 UTC 2010


Author: olafvdspek-guest
Date: 2010-06-15 20:50:22 +0000 (Tue, 15 Jun 2010)
New Revision: 468

Modified:
   lighttpd/trunk/debian/conf-available/05-auth.conf
   lighttpd/trunk/debian/conf-available/10-cgi.conf
   lighttpd/trunk/debian/conf-available/10-cml.conf
   lighttpd/trunk/debian/conf-available/10-fastcgi.conf
   lighttpd/trunk/debian/conf-available/10-magnet.conf
   lighttpd/trunk/debian/conf-available/10-proxy.conf
   lighttpd/trunk/debian/conf-available/10-rrdtool.conf
   lighttpd/trunk/debian/conf-available/10-simple-vhost.conf
   lighttpd/trunk/debian/conf-available/10-ssi.conf
   lighttpd/trunk/debian/conf-available/10-ssl.conf
   lighttpd/trunk/debian/conf-available/10-status.conf
   lighttpd/trunk/debian/conf-available/10-trigger-b4-dl.conf
   lighttpd/trunk/debian/conf-available/10-userdir.conf
   lighttpd/trunk/debian/conf-available/10-webdav.conf
   lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf
   lighttpd/trunk/debian/lighttpd.conf
Log:
Removed broken documentation links


Modified: lighttpd/trunk/debian/conf-available/05-auth.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/05-auth.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/05-auth.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,7 +1,4 @@
-## Authentication for lighttpd
-##
-## Documentation: /usr/share/doc/lighttpd-doc/authentication.txt.gz
-##                http://www.lighttpd.net/documentation/authentication.html
+# /usr/share/doc/lighttpd-doc/authentication.txt.gz
 
 server.modules                += ( "mod_auth" )
 

Modified: lighttpd/trunk/debian/conf-available/10-cgi.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-cgi.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-cgi.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,20 +1,15 @@
-## CGI programs allow you to enhance the functionality of the server in a very
-## straight and simple way..
-##
-## Documentation: /usr/share/doc/lighttpd-doc/cgi.txt
-##                http://www.lighttpd.net/documentation/cgi.html
+# /usr/share/doc/lighttpd-doc/cgi.txt
 
-server.modules  += ( "mod_cgi" )
+server.modules += ( "mod_cgi" )
 
 $HTTP["url"] =~ "^/cgi-bin/" {
 	cgi.assign = ( "" => "" )
 }
 
 ## Warning this represents a security risk, as it allow to execute any file
-## with a .pl/.php/.py even outside of /usr/lib/cgi-bin.
+## with a .pl/.py even outside of /usr/lib/cgi-bin.
 #
 #cgi.assign      = (
 #	".pl"  => "/usr/bin/perl",
-#	".php" => "/usr/bin/php-cgi",
 #	".py"  => "/usr/bin/python",
 #)

Modified: lighttpd/trunk/debian/conf-available/10-cml.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-cml.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-cml.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -2,8 +2,7 @@
 ## at one side and building a page from its fragments on the 
 ## other side using LUA.
 ##
-## Documentation: /usr/share/doc/lighttpd-doc/cml.txt
-##                http://www.lighttpd.net/documentation/cml.html
+## /usr/share/doc/lighttpd-doc/cml.txt
 
 server.modules += ( "mod_cml" )
 

Modified: lighttpd/trunk/debian/conf-available/10-fastcgi.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-fastcgi.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-fastcgi.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,8 +1,4 @@
-## FastCGI programs have the same functionality as CGI programs,
-## but are considerably faster through lower interpreter startup
-## time and socketed communication
-##
-## Documentation: /usr/share/doc/lighttpd-doc/fastcgi.txt.gz
-##                http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
+# /usr/share/doc/lighttpd-doc/fastcgi.txt.gz
+# http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
 
 server.modules += ( "mod_fastcgi" )

Modified: lighttpd/trunk/debian/conf-available/10-magnet.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-magnet.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-magnet.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,8 +1,4 @@
-## CML is a Meta language to describe the dependencies of a page
-## at one side and building a page from its fragments on the 
-## other side using LUA.
-##
-## Documentation: /usr/share/doc/lighttpd-doc/magnet.txt.gz
-##               http://trac.lighttpd.net/trac/wiki/Docs%3AModMagnet
+# /usr/share/doc/lighttpd-doc/magnet.txt.gz
+# http://trac.lighttpd.net/trac/wiki/Docs%3AModMagnet
 
 server.modules += ( "mod_magnet" )

Modified: lighttpd/trunk/debian/conf-available/10-proxy.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-proxy.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-proxy.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,7 +1,4 @@
-## Let lighttpd act as a proxy server for special file types, hosts etc
-##
-## Documentation: /usr/share/doc/lighttpd-doc/proxy.txt
-##                http://www.lighttpd.net/documentation/proxy.html
+# /usr/share/doc/lighttpd-doc/proxy.txt
 
 server.modules   += ( "mod_proxy" )
 

Modified: lighttpd/trunk/debian/conf-available/10-rrdtool.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-rrdtool.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-rrdtool.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,7 +1,4 @@
-## RRDtool monitors the traffic and load on Lighttpd
-##
-## Documentation: /usr/share/doc/lighttpd-doc/rrdtool.txt
-##                http://www.lighttpd.net/documentation/rrdtool.html
+# /usr/share/doc/lighttpd-doc/rrdtool.txt
 
 server.modules += ( "mod_rrdtool" )
 

Modified: lighttpd/trunk/debian/conf-available/10-simple-vhost.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-simple-vhost.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-simple-vhost.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,11 +1,8 @@
-## Simple name-based virtual hosting
-##
-## Documentation: /usr/share/doc/lighttpd-doc/simple-vhost.txt
-##                http://www.lighttpd.net/documentation/simple-vhost.html
+# /usr/share/doc/lighttpd-doc/simple-vhost.txt
 
 server.modules += ( "mod_simple_vhost" )
 
-## The document root of a virtual host isdocument-root =
+## The document root of a virtual host is document-root =
 ##   simple-vhost.server-root + $HTTP["host"] + simple-vhost.document-root
 simple-vhost.server-root         = "/srv"
 simple-vhost.document-root       = "htdocs"

Modified: lighttpd/trunk/debian/conf-available/10-ssi.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-ssi.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-ssi.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,10 +1,5 @@
-## Server-Side Include implements simple preprocessing of
-## HTML files compatible to Apache SSI.
-##
-## Documentation: /usr/share/doc/lighttpd-doc/ssi.txt
-##                http://www.lighttpd.net/documentation/ssi.html
+# /usr/share/doc/lighttpd-doc/ssi.txt
 
 server.modules += ( "mod_ssi" )
 
-## The extension of the files which should be preprocessed (mostly .shtml)
 ssi.extension   = ( ".shtml" )

Modified: lighttpd/trunk/debian/conf-available/10-ssl.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-ssl.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-ssl.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,10 +1,6 @@
-## lighttpd support for SSLv2 and SSLv3
-## 
-## Documentation: /usr/share/doc/lighttpd-doc/ssl.txt
-##	http://www.lighttpd.net/documentation/ssl.html 
+# /usr/share/doc/lighttpd-doc/ssl.txt
 
-#### SSL engine
 $SERVER["socket"] == "0.0.0.0:443" {
-                  ssl.engine                  = "enable"
-                  ssl.pemfile                 = "/etc/lighttpd/server.pem"
+	ssl.engine  = "enable"
+	ssl.pemfile = "/etc/lighttpd/server.pem"
 }

Modified: lighttpd/trunk/debian/conf-available/10-status.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-status.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-status.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,14 +1,10 @@
-## mod_status generates the status overview of the webserver.
-##
-## Documentation: /usr/share/doc/lighttpd-doc/status.txt
-##      http://trac.lighttpd.net/trac/wiki/Docs%3AModStatus
+# /usr/share/doc/lighttpd-doc/status.txt
+# http://trac.lighttpd.net/trac/wiki/Docs%3AModStatus
 
 server.modules += ( "mod_status" )
 
-## relative URL which is used to retrieve the status-page
-status.status-url = "/server-status"
+# status.status-url = "/server-status"
 
-## relative URL for the config page which displays the loaded modules
 # status.config-url = "/server-config"
 
 ## relative URL for a plain-text page containing the internal statistics

Modified: lighttpd/trunk/debian/conf-available/10-trigger-b4-dl.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-trigger-b4-dl.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-trigger-b4-dl.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,7 +1,6 @@
 ## A module to prevent deep-linking from other sites.
 ## 
-## Documentation: /usr/share/doc/lighttpd-doc/trigger-b4-dl.html
-##                http://www.lighttpd.net/documentation/trigger-b4-dl.txt
+# /usr/share/doc/lighttpd-doc/trigger-b4-dl.html
 
 server.modules += ( "mod_trigger_b4_dl" )
 

Modified: lighttpd/trunk/debian/conf-available/10-userdir.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-userdir.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-userdir.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,8 +1,7 @@
 ## The userdir module provides a simple way to link user-based directories into
 ## the global namespace of the webserver.
 ##
-## Documentation: /usr/share/doc/lighttpd-doc/userdir.txt
-##                http://www.lighttpd.net/documentation/userdir.html
+# /usr/share/doc/lighttpd-doc/userdir.txt
 
 server.modules      += ( "mod_userdir" )
 

Modified: lighttpd/trunk/debian/conf-available/10-webdav.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/10-webdav.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/10-webdav.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -3,8 +3,8 @@
 ## the group defined which allows users to collaboratively edit and manage
 ## files on remote web servers.
 ##
-## Documentation: /usr/share/doc/lighttpd-doc/webdav.txt
-##                http://trac.lighttpd.net/trac/wiki/Docs%3AModWebDAV
+# /usr/share/doc/lighttpd-doc/webdav.txt
+# http://trac.lighttpd.net/trac/wiki/Docs%3AModWebDAV
 
 server.modules += ( "mod_webdav" )
 

Modified: lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf
===================================================================
--- lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/conf-available/15-fastcgi-php.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -1,9 +1,5 @@
-## FastCGI programs have the same functionality as CGI programs,
-## but are considerably faster through lower interpreter startup
-## time and socketed communication
-##
-## Documentation: /usr/share/doc/lighttpd-doc/fastcgi.txt.gz
-##                http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
+# /usr/share/doc/lighttpd-doc/fastcgi.txt.gz
+# http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
 
 ## Start an FastCGI server for php (needs the php5-cgi package)
 fastcgi.server += ( ".php" => 
@@ -11,7 +7,6 @@
 		"bin-path" => "/usr/bin/php-cgi",
 		"socket" => "/tmp/php.socket",
 		"max-procs" => 1,
-		"idle-timeout" => 20,
 		"bin-environment" => ( 
 			"PHP_FCGI_CHILDREN" => "4",
 			"PHP_FCGI_MAX_REQUESTS" => "10000"

Modified: lighttpd/trunk/debian/lighttpd.conf
===================================================================
--- lighttpd/trunk/debian/lighttpd.conf	2010-06-03 15:40:47 UTC (rev 467)
+++ lighttpd/trunk/debian/lighttpd.conf	2010-06-15 20:50:22 UTC (rev 468)
@@ -19,9 +19,6 @@
 
 url.access-deny = ( "~", ".inc" )
 
-## Use the "Content-Type" extended attribute to obtain mime type if possible
-# mimetype.use-xattr = "enable"
-
 static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
 
 ## Use ipv6 if available




More information about the pkg-lighttpd-maintainers mailing list