diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2023-06-11 04:29:54 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-06-11 04:36:12 +0200 |
commit | add3cbfcd3dfb1ce64d5d6f67a831c6410b99776 (patch) | |
tree | 5f054f17d9ef5b5c6a03554495376bdaa7dd9b8e /net/nginx/Makefile | |
parent | 15271cb46794f79681b993ffe719400d02c71d3b (diff) |
nginx: fix problem with migration of uci conf template
Fix some problem with migration of uci conf template and include of
module.d directive.
Fix 2 case:
- uci.conf.template not versioned but with the include module.d
resulting in double include module.d
- uci.conf.template version 1.1 with the include module.d at the end
of the config. This is problematic for nginx as modules must be
included before any http directive.
Handle this 2 case to restore a working uci.conf.template configuration
on migrated config.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'net/nginx/Makefile')
-rw-r--r-- | net/nginx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/nginx/Makefile b/net/nginx/Makefile index 061d82346..162c19565 100644 --- a/net/nginx/Makefile +++ b/net/nginx/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nginx PKG_VERSION:=1.24.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=nginx-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://nginx.org/download/ |