diff options
Diffstat (limited to 'package/nginx/Makefile')
-rw-r--r-- | package/nginx/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/nginx/Makefile b/package/nginx/Makefile index fc43d851d..803371016 100644 --- a/package/nginx/Makefile +++ b/package/nginx/Makefile @@ -4,9 +4,9 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= nginx -PKG_VERSION:= 1.12.0 +PKG_VERSION:= 1.26.1 PKG_RELEASE:= 1 -PKG_HASH:= b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30 +PKG_HASH:= f9187468ff2eb159260bfd53867c25ff8e334726237acf227b9e870e53d3e36b PKG_DESCR:= powerful http reverse proxy and webserver PKG_SECTION:= net/http PKG_BUILDDEP:= pcre zlib @@ -47,7 +47,8 @@ CONFIGURE_ARGS:= --prefix=/srv/www \ --http-proxy-temp-path=/var/lib/nginx/proxy \ --http-fastcgi-temp-path=/var/lib/nginx/fastcgi \ --http-scgi-temp-path=/var/lib/nginx/uwsgi \ - --http-uwsgi-temp-path=/var/lib/nginx/uwsgi + --http-uwsgi-temp-path=/var/lib/nginx/uwsgi \ + --without-http_upstream_zone_module ifeq ($(ADK_PACKAGE_NGINX_WITH_LIBRESSL),y) CONFIGURE_ARGS+= --with-http_ssl_module @@ -57,7 +58,7 @@ ALL_TARGET:= nginx-install: $(INSTALL_DIR) $(IDIR_NGINX)/usr/sbin $(IDIR_NGINX)/etc/nginx - $(INSTALL_BIN) $(WRKINST)/usr/sbin/nginx \ + $(INSTALL_BIN) $(WRKBUILD)/objs/nginx \ $(IDIR_NGINX)/usr/sbin for f in nginx.conf mime.types fastcgi_params koi-utf koi-win win-utf; do \ cp ./files/$${f} \ |