Signed-off-by: Marcel Lorenz marcel.lorenz@ipfire.org --- config/rootfiles/packages/nginx | 8 ++++++++ lfs/nginx | 27 +++++++++++++++++++++------ 2 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/config/rootfiles/packages/nginx b/config/rootfiles/packages/nginx index 5ecb241..a7799e5 100644 --- a/config/rootfiles/packages/nginx +++ b/config/rootfiles/packages/nginx @@ -15,10 +15,18 @@ etc/nginx/uwsgi_params etc/nginx/uwsgi_params.default etc/nginx/win-utf etc/rc.d/init.d/nginx +#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/nginx +#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/nginx/.packlist +#usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/nginx/nginx.bs +usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/auto/nginx/nginx.so +usr/lib/perl5/site_perl/5.12.3/MACHINE-linux-thread-multi/nginx.pm usr/sbin/nginx +#usr/share/man/man3/nginx.3 usr/share/nginx usr/share/nginx/html usr/share/nginx/html/50x.html usr/share/nginx/html/index.html +#usr/share/nginx/modules +usr/share/nginx/modules/ngx_mail_module.so var/log/nginx var/spool/nginx diff --git a/lfs/nginx b/lfs/nginx index 63d3698..be8009b 100644 --- a/lfs/nginx +++ b/lfs/nginx @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-14 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2016 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@
include Config
-VER = 1.6.2 +VER = 1.11.0
THISAPP = nginx-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nginx -PAK_VER = 4 +PAK_VER = 5
############################################################################### # Top-level Rules @@ -42,7 +42,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = d1b55031ae6e4bce37f8776b94d8b930 +$(DL_FILE)_MD5 = a9dd047f277710b34e59407117e13bc6
install : $(TARGET)
@@ -88,10 +88,25 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --error-log-path=/var/log/nginx/error.log \ --user=nobody \ --group=nobody \ - --with-imap --with-imap_ssl_module --with-http_ssl_module \ + --with-file-aio \ + --with-pcre \ + --with-threads \ + --with-mail=dynamic \ + --with-mail_ssl_module \ + --with-http_gzip_static_module \ --with-http_stub_status_module \ + --with-http_secure_link_module \ + --with-http_random_index_module \ + --with-http_degradation_module \ + --with-http_perl_module \ + --with-http_gunzip_module \ + --with-http_xslt_module \ + --with-http_image_filter_module \ + --with-http_addition_module \ + --with-http_realip_module \ + --with-http_ssl_module \ --with-http_dav_module \ - --with-http_sub_module + --with-http_sub_module cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install mkdir -p /var/log/nginx /var/spool/nginx