mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72
@ 2023-10-23 12:21 Andreas Helmcke
  2023-11-02 11:28 ` Alexander Dahl
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andreas Helmcke @ 2023-10-23 12:21 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

Bugfixes and several changes. e.g.
- Stronger TLS defaults
- HTTP/2 Support now as optional module
- Some former modules are now build in

Link: https://www.lighttpd.net/2023/1/3/1.4.68/
Link: https://www.lighttpd.net/2023/2/10/1.4.69/
Link: https://www.lighttpd.net/2023/5/10/1.4.70/
Link: https://www.lighttpd.net/2023/5/27/1.4.71/
Link: https://www.lighttpd.net/2023/10/6/1.4.72/
Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
 projectroot/etc/lighttpd/lighttpd.conf |  2 ++
 rules/lighttpd.in                      | 37 +++++++++-----------------
 rules/lighttpd.make                    | 17 +++++-------
 3 files changed, 22 insertions(+), 34 deletions(-)

diff --git a/projectroot/etc/lighttpd/lighttpd.conf b/projectroot/etc/lighttpd/lighttpd.conf
index fa2f60e13..abd4bb66e 100644
--- a/projectroot/etc/lighttpd/lighttpd.conf
+++ b/projectroot/etc/lighttpd/lighttpd.conf
@@ -13,6 +13,8 @@ server.modules		= (
 	@MODULES@
 )
 
+@NOH2@server.feature-flags += ( "server.h2proto" => "disable" )
+
 index-file.names = ( "index.html" )
 
 include "conf.d/*.conf"
diff --git a/rules/lighttpd.in b/rules/lighttpd.in
index 910271087..18dd8ab4e 100644
--- a/rules/lighttpd.in
+++ b/rules/lighttpd.in
@@ -69,13 +69,6 @@ endmenu
 
 menu "modules                     "
 
-config LIGHTTPD_MOD_ACCESS
-	bool
-	prompt "mod_access"
-	default y
-	help
-	  Deny access to some files.
-
 config LIGHTTPD_MOD_ACCESSLOG
 	bool
 	prompt "mod_accesslog"
@@ -83,12 +76,6 @@ config LIGHTTPD_MOD_ACCESSLOG
 	help
 	  flexible logging of requests served
 
-config LIGHTTPD_MOD_ALIAS
-	bool
-	prompt "mod_alias"
-	help
-	  Specify a special document-root for a given url-subset.
-
 config LIGHTTPD_MOD_AUTH
 	bool
 	prompt "mod_auth"
@@ -123,11 +110,12 @@ config LIGHTTPD_BZ2LIB
 	  Enable bzip2 support for mod_deflate.
 endif
 
-config LIGHTTPD_MOD_FASTCGI
+config LIGHTTPD_MOD_DIRLISTING
 	bool
-	prompt "mod_fastcgi"
-
-if LIGHTTPD_MOD_FASTCGI
+	prompt "mod_dirlisting"
+	default y
+	help
+	  Creates an HTML page listing the contents of the target directory.
 
 config LIGHTTPD_MOD_FASTCGI_PHP
 	bool
@@ -140,7 +128,14 @@ config LIGHTTPD_MOD_FASTCGI_PHP
 comment "PHP CGI SAPI must be enabled"
 	depends on !PHP8_SAPI_CGI
 
-endif
+config LIGHTTPD_MOD_H2
+	bool
+	prompt "mod_h2"
+	default y
+	help
+	  HTTP/2 support
+	  To use lighttpd without HTTP/2 you need to disable it in the configuration file:
+	     server.feature-flags += ( "server.h2proto" => "disable" )
 
 config LIGHTTPD_MOD_MAGNET
 	bool
@@ -149,12 +144,6 @@ config LIGHTTPD_MOD_MAGNET
 	help
 	  A module to control the request handling
 
-config LIGHTTPD_MOD_REWRITE
-	bool
-	prompt "mod_rewrite"
-	help
-	  Module for URL rewriting
-
 config LIGHTTPD_MOD_WEBDAV
 	bool
 	prompt "mod_webdav"
diff --git a/rules/lighttpd.make b/rules/lighttpd.make
index 3aa54a1fb..40d59c346 100644
--- a/rules/lighttpd.make
+++ b/rules/lighttpd.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIGHTTPD) += lighttpd
 #
 # Paths and names
 #
-LIGHTTPD_VERSION	:= 1.4.67
-LIGHTTPD_MD5		:= 64822c5061001673162cf9775d91a80b
+LIGHTTPD_VERSION	:= 1.4.72
+LIGHTTPD_MD5		:= 466f9fe131cd7d38d0fe47d2e6a2939d
 LIGHTTPD		:= lighttpd-$(LIGHTTPD_VERSION)
 LIGHTTPD_SUFFIX		:= tar.xz
 LIGHTTPD_URL		:= http://download.lighttpd.net/lighttpd/releases-1.4.x/$(LIGHTTPD).$(LIGHTTPD_SUFFIX)
@@ -93,24 +93,19 @@ $(STATEDIR)/lighttpd.install:
 # ----------------------------------------------------------------------------
 
 LIGHTTPD_MODULES-y :=
-LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESS)		+= mod_access
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESSLOG)	+= mod_accesslog
-LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ALIAS)		+= mod_alias
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_auth
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_authn_file
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DEFLATE)	+= mod_deflate
-LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_FASTCGI)	+= mod_fastcgi
+LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DIRLISTING)	+= mod_dirlisting
+LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_H2)			+= mod_h2
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_MAGNET)		+= mod_magnet
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_OPENSSL)		+= mod_openssl
-LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_REWRITE)	+= mod_rewrite
 LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_WEBDAV)		+= mod_webdav
 LIGHTTPD_MODULES-y += $(call remove_quotes,$(PTXCONF_LIGHTTPD_MOD_EXTRA))
 
 LIGHTTPD_MODULE_STRING := $(subst $(space),$(comma),$(addsuffix \",$(addprefix \",$(LIGHTTPD_MODULES-y))))
 
-# add modules that are always loaded
-LIGHTTPD_MODULES_INSTALL := mod_indexfile mod_dirlisting mod_staticfile $(LIGHTTPD_MODULES-y)
-
 $(STATEDIR)/lighttpd.targetinstall:
 	@$(call targetinfo)
 
@@ -127,7 +122,7 @@ $(STATEDIR)/lighttpd.targetinstall:
 		/usr/sbin/lighttpd-angel)
 
 ifdef PTXCONF_LIGHTTPD_INSTALL_SELECTED_MODULES
-	@$(foreach mod,$(LIGHTTPD_MODULES_INSTALL), \
+	@$(foreach mod,$(LIGHTTPD_MODULES-y), \
 		$(call install_lib, lighttpd, 0, 0, 0644, lighttpd/$(mod))$(ptx/nl))
 else
 #	# modules
@@ -142,6 +137,8 @@ endif
 	@$(call install_copy, lighttpd, 0, 0, 0755, /etc/lighttpd/conf.d)
 	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
 		@MODULES@, $(LIGHTTPD_MODULE_STRING))
+	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
+		@NOH2@, $(call ptx/ifdef, PTXCONF_LIGHTTPD_MOD_H2,"#",))
 	@$(call install_alternative, lighttpd, 0, 0, 0644, \
 		/etc/lighttpd/conf.d/mime.conf)
 
-- 
2.40.1




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72
  2023-10-23 12:21 [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72 Andreas Helmcke
@ 2023-11-02 11:28 ` Alexander Dahl
  2023-11-03 14:27 ` Michael Olbrich
  2023-11-10  7:25 ` [ptxdist] [APPLIED] " Michael Olbrich
  2 siblings, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2023-11-02 11:28 UTC (permalink / raw)
  To: Andreas Helmcke; +Cc: ptxdist

Hello Andreas,

Am Mon, Oct 23, 2023 at 02:21:13PM +0200 schrieb Andreas Helmcke:
> Bugfixes and several changes. e.g.
> - Stronger TLS defaults
> - HTTP/2 Support now as optional module
> - Some former modules are now build in
> 
> Link: https://www.lighttpd.net/2023/1/3/1.4.68/
> Link: https://www.lighttpd.net/2023/2/10/1.4.69/
> Link: https://www.lighttpd.net/2023/5/10/1.4.70/
> Link: https://www.lighttpd.net/2023/5/27/1.4.71/
> Link: https://www.lighttpd.net/2023/10/6/1.4.72/
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>

Tested-by: Alexander Dahl <ada@thorsis.com>

Can confirm the connection is using HTTP/2 or HTTP/1.1 depending on
the menu option now.  Looks fine.

I had to adapt my lighttpd.conf for modules which where covered by
@MODULES@ before.  This is more a migration problem however, not
directly business of this patch (never was).

Thanks and greets
Alex

> ---
>  projectroot/etc/lighttpd/lighttpd.conf |  2 ++
>  rules/lighttpd.in                      | 37 +++++++++-----------------
>  rules/lighttpd.make                    | 17 +++++-------
>  3 files changed, 22 insertions(+), 34 deletions(-)
> 
> diff --git a/projectroot/etc/lighttpd/lighttpd.conf b/projectroot/etc/lighttpd/lighttpd.conf
> index fa2f60e13..abd4bb66e 100644
> --- a/projectroot/etc/lighttpd/lighttpd.conf
> +++ b/projectroot/etc/lighttpd/lighttpd.conf
> @@ -13,6 +13,8 @@ server.modules		= (
>  	@MODULES@
>  )
>  
> +@NOH2@server.feature-flags += ( "server.h2proto" => "disable" )
> +
>  index-file.names = ( "index.html" )
>  
>  include "conf.d/*.conf"
> diff --git a/rules/lighttpd.in b/rules/lighttpd.in
> index 910271087..18dd8ab4e 100644
> --- a/rules/lighttpd.in
> +++ b/rules/lighttpd.in
> @@ -69,13 +69,6 @@ endmenu
>  
>  menu "modules                     "
>  
> -config LIGHTTPD_MOD_ACCESS
> -	bool
> -	prompt "mod_access"
> -	default y
> -	help
> -	  Deny access to some files.
> -
>  config LIGHTTPD_MOD_ACCESSLOG
>  	bool
>  	prompt "mod_accesslog"
> @@ -83,12 +76,6 @@ config LIGHTTPD_MOD_ACCESSLOG
>  	help
>  	  flexible logging of requests served
>  
> -config LIGHTTPD_MOD_ALIAS
> -	bool
> -	prompt "mod_alias"
> -	help
> -	  Specify a special document-root for a given url-subset.
> -
>  config LIGHTTPD_MOD_AUTH
>  	bool
>  	prompt "mod_auth"
> @@ -123,11 +110,12 @@ config LIGHTTPD_BZ2LIB
>  	  Enable bzip2 support for mod_deflate.
>  endif
>  
> -config LIGHTTPD_MOD_FASTCGI
> +config LIGHTTPD_MOD_DIRLISTING
>  	bool
> -	prompt "mod_fastcgi"
> -
> -if LIGHTTPD_MOD_FASTCGI
> +	prompt "mod_dirlisting"
> +	default y
> +	help
> +	  Creates an HTML page listing the contents of the target directory.
>  
>  config LIGHTTPD_MOD_FASTCGI_PHP
>  	bool
> @@ -140,7 +128,14 @@ config LIGHTTPD_MOD_FASTCGI_PHP
>  comment "PHP CGI SAPI must be enabled"
>  	depends on !PHP8_SAPI_CGI
>  
> -endif
> +config LIGHTTPD_MOD_H2
> +	bool
> +	prompt "mod_h2"
> +	default y
> +	help
> +	  HTTP/2 support
> +	  To use lighttpd without HTTP/2 you need to disable it in the configuration file:
> +	     server.feature-flags += ( "server.h2proto" => "disable" )
>  
>  config LIGHTTPD_MOD_MAGNET
>  	bool
> @@ -149,12 +144,6 @@ config LIGHTTPD_MOD_MAGNET
>  	help
>  	  A module to control the request handling
>  
> -config LIGHTTPD_MOD_REWRITE
> -	bool
> -	prompt "mod_rewrite"
> -	help
> -	  Module for URL rewriting
> -
>  config LIGHTTPD_MOD_WEBDAV
>  	bool
>  	prompt "mod_webdav"
> diff --git a/rules/lighttpd.make b/rules/lighttpd.make
> index 3aa54a1fb..40d59c346 100644
> --- a/rules/lighttpd.make
> +++ b/rules/lighttpd.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIGHTTPD) += lighttpd
>  #
>  # Paths and names
>  #
> -LIGHTTPD_VERSION	:= 1.4.67
> -LIGHTTPD_MD5		:= 64822c5061001673162cf9775d91a80b
> +LIGHTTPD_VERSION	:= 1.4.72
> +LIGHTTPD_MD5		:= 466f9fe131cd7d38d0fe47d2e6a2939d
>  LIGHTTPD		:= lighttpd-$(LIGHTTPD_VERSION)
>  LIGHTTPD_SUFFIX		:= tar.xz
>  LIGHTTPD_URL		:= http://download.lighttpd.net/lighttpd/releases-1.4.x/$(LIGHTTPD).$(LIGHTTPD_SUFFIX)
> @@ -93,24 +93,19 @@ $(STATEDIR)/lighttpd.install:
>  # ----------------------------------------------------------------------------
>  
>  LIGHTTPD_MODULES-y :=
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESS)		+= mod_access
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESSLOG)	+= mod_accesslog
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ALIAS)		+= mod_alias
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_auth
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_authn_file
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DEFLATE)	+= mod_deflate
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_FASTCGI)	+= mod_fastcgi
> +LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DIRLISTING)	+= mod_dirlisting
> +LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_H2)			+= mod_h2
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_MAGNET)		+= mod_magnet
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_OPENSSL)		+= mod_openssl
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_REWRITE)	+= mod_rewrite
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_WEBDAV)		+= mod_webdav
>  LIGHTTPD_MODULES-y += $(call remove_quotes,$(PTXCONF_LIGHTTPD_MOD_EXTRA))
>  
>  LIGHTTPD_MODULE_STRING := $(subst $(space),$(comma),$(addsuffix \",$(addprefix \",$(LIGHTTPD_MODULES-y))))
>  
> -# add modules that are always loaded
> -LIGHTTPD_MODULES_INSTALL := mod_indexfile mod_dirlisting mod_staticfile $(LIGHTTPD_MODULES-y)
> -
>  $(STATEDIR)/lighttpd.targetinstall:
>  	@$(call targetinfo)
>  
> @@ -127,7 +122,7 @@ $(STATEDIR)/lighttpd.targetinstall:
>  		/usr/sbin/lighttpd-angel)
>  
>  ifdef PTXCONF_LIGHTTPD_INSTALL_SELECTED_MODULES
> -	@$(foreach mod,$(LIGHTTPD_MODULES_INSTALL), \
> +	@$(foreach mod,$(LIGHTTPD_MODULES-y), \
>  		$(call install_lib, lighttpd, 0, 0, 0644, lighttpd/$(mod))$(ptx/nl))
>  else
>  #	# modules
> @@ -142,6 +137,8 @@ endif
>  	@$(call install_copy, lighttpd, 0, 0, 0755, /etc/lighttpd/conf.d)
>  	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
>  		@MODULES@, $(LIGHTTPD_MODULE_STRING))
> +	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
> +		@NOH2@, $(call ptx/ifdef, PTXCONF_LIGHTTPD_MOD_H2,"#",))
>  	@$(call install_alternative, lighttpd, 0, 0, 0644, \
>  		/etc/lighttpd/conf.d/mime.conf)
>  
> -- 
> 2.40.1
> 
> 



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72
  2023-10-23 12:21 [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72 Andreas Helmcke
  2023-11-02 11:28 ` Alexander Dahl
@ 2023-11-03 14:27 ` Michael Olbrich
  2023-11-10  7:25 ` [ptxdist] [APPLIED] " Michael Olbrich
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2023-11-03 14:27 UTC (permalink / raw)
  To: Andreas Helmcke; +Cc: ptxdist

On Mon, Oct 23, 2023 at 02:21:13PM +0200, Andreas Helmcke wrote:
> Bugfixes and several changes. e.g.
> - Stronger TLS defaults
> - HTTP/2 Support now as optional module
> - Some former modules are now build in

This didn't make the release because targetinstall failed for me, so I
dropped the patch. I looked at it again today, and it turned out that I had
a module in the extra modules list that was removed...

It's in my test queue now and should land in master in the near future.

Michael

> Link: https://www.lighttpd.net/2023/1/3/1.4.68/
> Link: https://www.lighttpd.net/2023/2/10/1.4.69/
> Link: https://www.lighttpd.net/2023/5/10/1.4.70/
> Link: https://www.lighttpd.net/2023/5/27/1.4.71/
> Link: https://www.lighttpd.net/2023/10/6/1.4.72/
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> ---
>  projectroot/etc/lighttpd/lighttpd.conf |  2 ++
>  rules/lighttpd.in                      | 37 +++++++++-----------------
>  rules/lighttpd.make                    | 17 +++++-------
>  3 files changed, 22 insertions(+), 34 deletions(-)
> 
> diff --git a/projectroot/etc/lighttpd/lighttpd.conf b/projectroot/etc/lighttpd/lighttpd.conf
> index fa2f60e13..abd4bb66e 100644
> --- a/projectroot/etc/lighttpd/lighttpd.conf
> +++ b/projectroot/etc/lighttpd/lighttpd.conf
> @@ -13,6 +13,8 @@ server.modules		= (
>  	@MODULES@
>  )
>  
> +@NOH2@server.feature-flags += ( "server.h2proto" => "disable" )
> +
>  index-file.names = ( "index.html" )
>  
>  include "conf.d/*.conf"
> diff --git a/rules/lighttpd.in b/rules/lighttpd.in
> index 910271087..18dd8ab4e 100644
> --- a/rules/lighttpd.in
> +++ b/rules/lighttpd.in
> @@ -69,13 +69,6 @@ endmenu
>  
>  menu "modules                     "
>  
> -config LIGHTTPD_MOD_ACCESS
> -	bool
> -	prompt "mod_access"
> -	default y
> -	help
> -	  Deny access to some files.
> -
>  config LIGHTTPD_MOD_ACCESSLOG
>  	bool
>  	prompt "mod_accesslog"
> @@ -83,12 +76,6 @@ config LIGHTTPD_MOD_ACCESSLOG
>  	help
>  	  flexible logging of requests served
>  
> -config LIGHTTPD_MOD_ALIAS
> -	bool
> -	prompt "mod_alias"
> -	help
> -	  Specify a special document-root for a given url-subset.
> -
>  config LIGHTTPD_MOD_AUTH
>  	bool
>  	prompt "mod_auth"
> @@ -123,11 +110,12 @@ config LIGHTTPD_BZ2LIB
>  	  Enable bzip2 support for mod_deflate.
>  endif
>  
> -config LIGHTTPD_MOD_FASTCGI
> +config LIGHTTPD_MOD_DIRLISTING
>  	bool
> -	prompt "mod_fastcgi"
> -
> -if LIGHTTPD_MOD_FASTCGI
> +	prompt "mod_dirlisting"
> +	default y
> +	help
> +	  Creates an HTML page listing the contents of the target directory.
>  
>  config LIGHTTPD_MOD_FASTCGI_PHP
>  	bool
> @@ -140,7 +128,14 @@ config LIGHTTPD_MOD_FASTCGI_PHP
>  comment "PHP CGI SAPI must be enabled"
>  	depends on !PHP8_SAPI_CGI
>  
> -endif
> +config LIGHTTPD_MOD_H2
> +	bool
> +	prompt "mod_h2"
> +	default y
> +	help
> +	  HTTP/2 support
> +	  To use lighttpd without HTTP/2 you need to disable it in the configuration file:
> +	     server.feature-flags += ( "server.h2proto" => "disable" )
>  
>  config LIGHTTPD_MOD_MAGNET
>  	bool
> @@ -149,12 +144,6 @@ config LIGHTTPD_MOD_MAGNET
>  	help
>  	  A module to control the request handling
>  
> -config LIGHTTPD_MOD_REWRITE
> -	bool
> -	prompt "mod_rewrite"
> -	help
> -	  Module for URL rewriting
> -
>  config LIGHTTPD_MOD_WEBDAV
>  	bool
>  	prompt "mod_webdav"
> diff --git a/rules/lighttpd.make b/rules/lighttpd.make
> index 3aa54a1fb..40d59c346 100644
> --- a/rules/lighttpd.make
> +++ b/rules/lighttpd.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIGHTTPD) += lighttpd
>  #
>  # Paths and names
>  #
> -LIGHTTPD_VERSION	:= 1.4.67
> -LIGHTTPD_MD5		:= 64822c5061001673162cf9775d91a80b
> +LIGHTTPD_VERSION	:= 1.4.72
> +LIGHTTPD_MD5		:= 466f9fe131cd7d38d0fe47d2e6a2939d
>  LIGHTTPD		:= lighttpd-$(LIGHTTPD_VERSION)
>  LIGHTTPD_SUFFIX		:= tar.xz
>  LIGHTTPD_URL		:= http://download.lighttpd.net/lighttpd/releases-1.4.x/$(LIGHTTPD).$(LIGHTTPD_SUFFIX)
> @@ -93,24 +93,19 @@ $(STATEDIR)/lighttpd.install:
>  # ----------------------------------------------------------------------------
>  
>  LIGHTTPD_MODULES-y :=
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESS)		+= mod_access
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESSLOG)	+= mod_accesslog
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ALIAS)		+= mod_alias
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_auth
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_authn_file
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DEFLATE)	+= mod_deflate
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_FASTCGI)	+= mod_fastcgi
> +LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DIRLISTING)	+= mod_dirlisting
> +LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_H2)			+= mod_h2
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_MAGNET)		+= mod_magnet
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_OPENSSL)		+= mod_openssl
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_REWRITE)	+= mod_rewrite
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_WEBDAV)		+= mod_webdav
>  LIGHTTPD_MODULES-y += $(call remove_quotes,$(PTXCONF_LIGHTTPD_MOD_EXTRA))
>  
>  LIGHTTPD_MODULE_STRING := $(subst $(space),$(comma),$(addsuffix \",$(addprefix \",$(LIGHTTPD_MODULES-y))))
>  
> -# add modules that are always loaded
> -LIGHTTPD_MODULES_INSTALL := mod_indexfile mod_dirlisting mod_staticfile $(LIGHTTPD_MODULES-y)
> -
>  $(STATEDIR)/lighttpd.targetinstall:
>  	@$(call targetinfo)
>  
> @@ -127,7 +122,7 @@ $(STATEDIR)/lighttpd.targetinstall:
>  		/usr/sbin/lighttpd-angel)
>  
>  ifdef PTXCONF_LIGHTTPD_INSTALL_SELECTED_MODULES
> -	@$(foreach mod,$(LIGHTTPD_MODULES_INSTALL), \
> +	@$(foreach mod,$(LIGHTTPD_MODULES-y), \
>  		$(call install_lib, lighttpd, 0, 0, 0644, lighttpd/$(mod))$(ptx/nl))
>  else
>  #	# modules
> @@ -142,6 +137,8 @@ endif
>  	@$(call install_copy, lighttpd, 0, 0, 0755, /etc/lighttpd/conf.d)
>  	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
>  		@MODULES@, $(LIGHTTPD_MODULE_STRING))
> +	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
> +		@NOH2@, $(call ptx/ifdef, PTXCONF_LIGHTTPD_MOD_H2,"#",))
>  	@$(call install_alternative, lighttpd, 0, 0, 0644, \
>  		/etc/lighttpd/conf.d/mime.conf)
>  
> -- 
> 2.40.1
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] lighttpd: Version bump, 1.4.67 -> 1.4.72
  2023-10-23 12:21 [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72 Andreas Helmcke
  2023-11-02 11:28 ` Alexander Dahl
  2023-11-03 14:27 ` Michael Olbrich
@ 2023-11-10  7:25 ` Michael Olbrich
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2023-11-10  7:25 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

Thanks, applied as d46e5b0e83b47267ddf5cd6a0db0ceeb0d0c9c9e.

Michael

[sent from post-receive hook]

On Fri, 10 Nov 2023 08:25:04 +0100, Andreas Helmcke <ahelmcke@ela-soft.com> wrote:
> Bugfixes and several changes. e.g.
> - Stronger TLS defaults
> - HTTP/2 Support now as optional module
> - Some former modules are now build in
> 
> Link: https://www.lighttpd.net/2023/1/3/1.4.68/
> Link: https://www.lighttpd.net/2023/2/10/1.4.69/
> Link: https://www.lighttpd.net/2023/5/10/1.4.70/
> Link: https://www.lighttpd.net/2023/5/27/1.4.71/
> Link: https://www.lighttpd.net/2023/10/6/1.4.72/
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> Message-Id: <20231023122113.23521-1-ahelmcke@ela-soft.com>
> Tested-by: Alexander Dahl <ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/projectroot/etc/lighttpd/lighttpd.conf b/projectroot/etc/lighttpd/lighttpd.conf
> index fa2f60e1304c..abd4bb66e0ef 100644
> --- a/projectroot/etc/lighttpd/lighttpd.conf
> +++ b/projectroot/etc/lighttpd/lighttpd.conf
> @@ -13,6 +13,8 @@ server.modules		= (
>  	@MODULES@
>  )
>  
> +@NOH2@server.feature-flags += ( "server.h2proto" => "disable" )
> +
>  index-file.names = ( "index.html" )
>  
>  include "conf.d/*.conf"
> diff --git a/rules/lighttpd.in b/rules/lighttpd.in
> index 910271087183..18dd8ab4efde 100644
> --- a/rules/lighttpd.in
> +++ b/rules/lighttpd.in
> @@ -69,13 +69,6 @@ endmenu
>  
>  menu "modules                     "
>  
> -config LIGHTTPD_MOD_ACCESS
> -	bool
> -	prompt "mod_access"
> -	default y
> -	help
> -	  Deny access to some files.
> -
>  config LIGHTTPD_MOD_ACCESSLOG
>  	bool
>  	prompt "mod_accesslog"
> @@ -83,12 +76,6 @@ config LIGHTTPD_MOD_ACCESSLOG
>  	help
>  	  flexible logging of requests served
>  
> -config LIGHTTPD_MOD_ALIAS
> -	bool
> -	prompt "mod_alias"
> -	help
> -	  Specify a special document-root for a given url-subset.
> -
>  config LIGHTTPD_MOD_AUTH
>  	bool
>  	prompt "mod_auth"
> @@ -123,11 +110,12 @@ config LIGHTTPD_BZ2LIB
>  	  Enable bzip2 support for mod_deflate.
>  endif
>  
> -config LIGHTTPD_MOD_FASTCGI
> +config LIGHTTPD_MOD_DIRLISTING
>  	bool
> -	prompt "mod_fastcgi"
> -
> -if LIGHTTPD_MOD_FASTCGI
> +	prompt "mod_dirlisting"
> +	default y
> +	help
> +	  Creates an HTML page listing the contents of the target directory.
>  
>  config LIGHTTPD_MOD_FASTCGI_PHP
>  	bool
> @@ -140,7 +128,14 @@ config LIGHTTPD_MOD_FASTCGI_PHP
>  comment "PHP CGI SAPI must be enabled"
>  	depends on !PHP8_SAPI_CGI
>  
> -endif
> +config LIGHTTPD_MOD_H2
> +	bool
> +	prompt "mod_h2"
> +	default y
> +	help
> +	  HTTP/2 support
> +	  To use lighttpd without HTTP/2 you need to disable it in the configuration file:
> +	     server.feature-flags += ( "server.h2proto" => "disable" )
>  
>  config LIGHTTPD_MOD_MAGNET
>  	bool
> @@ -149,12 +144,6 @@ config LIGHTTPD_MOD_MAGNET
>  	help
>  	  A module to control the request handling
>  
> -config LIGHTTPD_MOD_REWRITE
> -	bool
> -	prompt "mod_rewrite"
> -	help
> -	  Module for URL rewriting
> -
>  config LIGHTTPD_MOD_WEBDAV
>  	bool
>  	prompt "mod_webdav"
> diff --git a/rules/lighttpd.make b/rules/lighttpd.make
> index 3aa54a1fbaf4..40d59c346f75 100644
> --- a/rules/lighttpd.make
> +++ b/rules/lighttpd.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIGHTTPD) += lighttpd
>  #
>  # Paths and names
>  #
> -LIGHTTPD_VERSION	:= 1.4.67
> -LIGHTTPD_MD5		:= 64822c5061001673162cf9775d91a80b
> +LIGHTTPD_VERSION	:= 1.4.72
> +LIGHTTPD_MD5		:= 466f9fe131cd7d38d0fe47d2e6a2939d
>  LIGHTTPD		:= lighttpd-$(LIGHTTPD_VERSION)
>  LIGHTTPD_SUFFIX		:= tar.xz
>  LIGHTTPD_URL		:= http://download.lighttpd.net/lighttpd/releases-1.4.x/$(LIGHTTPD).$(LIGHTTPD_SUFFIX)
> @@ -93,24 +93,19 @@ $(STATEDIR)/lighttpd.install:
>  # ----------------------------------------------------------------------------
>  
>  LIGHTTPD_MODULES-y :=
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESS)		+= mod_access
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ACCESSLOG)	+= mod_accesslog
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_ALIAS)		+= mod_alias
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_auth
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_AUTH)		+= mod_authn_file
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DEFLATE)	+= mod_deflate
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_FASTCGI)	+= mod_fastcgi
> +LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_DIRLISTING)	+= mod_dirlisting
> +LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_H2)			+= mod_h2
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_MAGNET)		+= mod_magnet
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_OPENSSL)		+= mod_openssl
> -LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_REWRITE)	+= mod_rewrite
>  LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_WEBDAV)		+= mod_webdav
>  LIGHTTPD_MODULES-y += $(call remove_quotes,$(PTXCONF_LIGHTTPD_MOD_EXTRA))
>  
>  LIGHTTPD_MODULE_STRING := $(subst $(space),$(comma),$(addsuffix \",$(addprefix \",$(LIGHTTPD_MODULES-y))))
>  
> -# add modules that are always loaded
> -LIGHTTPD_MODULES_INSTALL := mod_indexfile mod_dirlisting mod_staticfile $(LIGHTTPD_MODULES-y)
> -
>  $(STATEDIR)/lighttpd.targetinstall:
>  	@$(call targetinfo)
>  
> @@ -127,7 +122,7 @@ $(STATEDIR)/lighttpd.targetinstall:
>  		/usr/sbin/lighttpd-angel)
>  
>  ifdef PTXCONF_LIGHTTPD_INSTALL_SELECTED_MODULES
> -	@$(foreach mod,$(LIGHTTPD_MODULES_INSTALL), \
> +	@$(foreach mod,$(LIGHTTPD_MODULES-y), \
>  		$(call install_lib, lighttpd, 0, 0, 0644, lighttpd/$(mod))$(ptx/nl))
>  else
>  #	# modules
> @@ -142,6 +137,8 @@ endif
>  	@$(call install_copy, lighttpd, 0, 0, 0755, /etc/lighttpd/conf.d)
>  	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
>  		@MODULES@, $(LIGHTTPD_MODULE_STRING))
> +	@$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
> +		@NOH2@, $(call ptx/ifdef, PTXCONF_LIGHTTPD_MOD_H2,"#",))
>  	@$(call install_alternative, lighttpd, 0, 0, 0644, \
>  		/etc/lighttpd/conf.d/mime.conf)
>  



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-11-10  7:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-23 12:21 [ptxdist] [PATCH v4] lighttpd: Version bump, 1.4.67 -> 1.4.72 Andreas Helmcke
2023-11-02 11:28 ` Alexander Dahl
2023-11-03 14:27 ` Michael Olbrich
2023-11-10  7:25 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox