aboutsummaryrefslogtreecommitdiff
path: root/net/nginx
Commit message (Collapse)AuthorAge
* treewide: Use default PKG_BUILD_DIR when possibleJeffery To2019-10-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes lines that set PKG_BUILD_DIR when the set value is no different from the default value. Specifically, the line is removed if the assigned value is: * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT if it is set, so now this is identical to the default value. * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it the same as the previous case * $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) This is the same as the default PKG_BUILD_DIR when there is no BUILD_VARIANT. * $(BUILD_DIR)/[name]-$(PKG_VERSION) where [name] is a string that is identical to PKG_NAME [1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* nginx: adds new socket to luci uwsgi configAnsuel Smith2019-10-12
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* nginx: update to 1.16.1DENG Qingfang2019-08-15
| | | | | | | | | Fixes: when using HTTP/2 a client might cause excessive memory consumption and CPU usage (CVE-2019-9511, CVE-2019-9513, CVE-2019-9516). Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: small conf files fixDENG Qingfang2019-08-05
| | | | | | | Add Gzip compression type Remove unnecessary spaces from conf files Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: update brotli moduleDENG Qingfang2019-08-05
| | | | Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: update to 1.16.0Deng Qingfang2019-04-29
| | | | | | Update nginx to latest stable release 1.16.0 Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: fix #8729Deng Qingfang2019-04-20
| | | | | | Let nginx's config depend on CONFIG_OPENSSL_WITH_NPN Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: update to version 1.15.10 and reworkAnsuel Smith2019-04-05
| | | | | | | Remove libopenssl dep from NGINX_HTTP_CACHE and NGINX_HTTP_AUTH_BASIC config flag The documentation doesn't mention that openssl is required for this 2 modules. This also permit to use nginx no-ssl variant without libopenssl as this 2 module are selected by default. Also make OPENSSL_ENGINE flag a dep to recompile nginx on change of openssl compilation flag. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: update to 1.15.8 and remove PKG_VERSION from modules tarball filenameDeng Qingfang2019-01-04
| | | | | | | Update to 1.15.8. Also use HTTPS PKG_VERSION (nginx version) in 3rd-party modules tarball filename is dispensable and can be dropped to avoid unnecessary downloading Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: add stream SSL and stream SSL preread supportDeng Qingfang2018-12-17
| | | | Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: unified indentation character and add additional config entryJames Qian2018-12-12
| | | | | | | | | | | | The original configure file mixed tab and space characters as indentation, so use 4 spaces as the default indentation character. Add /etc/nginx/conf.d/*.conf as nginx additional configure files. Then we can add individual conf file for other http applications without modify the main nginx configure file. Signed-off-by: James Qian <sotux82@gmail.com>
* nginx: bump to latest release and otherAnsuel Smith2018-12-07
| | | | | | This bumps nginx to latest release, adds support for STREAM MODULE and bump rtmp version to fix a compilation error Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: fix rtmp module with openssl 1.1.1Eneas U de Queiroz2018-12-06
| | | | | | | Patch that changes the order of some include files in ngx_rtp_cenc.c that caused a compilation failure. Patch submitted upstream (#13). Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* nginx: fix detection of gcc builtin atomic operationsDeng Qingfang2018-12-06
| | | | | | Needed by stream module Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
* nginx: Bump to latest releaseAnsuel Smith2018-11-11
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: Update rtmp moduleDaniel Engberg2018-11-08
| | | | | | | Change to ut0mt8's fork that contains several enhancements and bugfixes. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* nginx: update to latest releaseAnsuel Smith2018-10-09
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: update to latest releaseAnsuel Smith2018-09-30
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: bump to latest releaseAnsuel Smith2018-09-02
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: Add missing WebDAV methods support (PROPFIND & OPTIONS)Ruixi Zhou2018-08-21
| | | | | | | | | | | | | | | | | | | Nginx provide WebDAV methods PUT, DELETE, MKCOL, COPY, and MOVE with http_dav_module. But most WebDAV clients that require additional WebDAV methods (PROPFIND & OPTIONS) to operate. Add missing methods support with Arutyunyan Roman (arutyunyan.roman@gmail.com)'s nginx-dav-ext-module. (see: http://nginx.org/en/docs/http/ngx_http_dav_module.html https://github.com/arut/nginx-dav-ext-module) Example config: location / { dav_methods PUT DELETE MKCOL COPY MOVE; dav_ext_methods PROPFIND OPTIONS; root /var/root/; } Signed-off-by: Ruixi Zhou <zhouruixi@gmail.com>
* nginx: improve luci configAnsuel Smith2018-08-20
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: Fix warnings while compile rtmp and ts modulesRuixi Zhou2018-08-12
| | | | Signed-off-by: Ruixi Zhou <zhouruixi@gmail.com>
* nginx: bump to latest releaseAnsuel Smith2018-07-30
| | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* Merge pull request #6514 from Ansuel/nginx_rootHannu Nyman2018-07-21
|\ | | | | nginx: change default user for luci conf
| * nginx: change default user for luci confAnsuel Smith2018-07-18
| | | | | | | | | | | | Currently the nginx user for the default luci config is root... This is dangerous and unnecessary, reset it back to nobody nogroup. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* | nginx: add http_sub_module and other fixAnsuel Smith2018-07-18
|/ | | | | | Someone requested this module to be included, so create the config flag for it. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: make virtual package provide nginxAnsuel Smith2018-07-15
| | | | | | Some package needs nginx as dependency this permit to use nginx-ssl and nginx-all-module as dep for them. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: fix bug in uci-defaults scriptsAnsuel Smith2018-07-14
| | | | | | Currently the uci-defaults scripts reset nginx config even it they are valid due to a bug in the if condition. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* Merge pull request #6426 from Ansuel/nginxbumpHannu Nyman2018-07-09
|\ | | | | nginx: bump to latest release
| * nginx: bump to latest releaseAnsuel Smith2018-07-08
| | | | | | | | Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* | treewide: add missing mirror hashYousong Zhou2018-07-09
| | | | | | | | | | | | | | They are missed out from the FIXUP check probably because of a flaw in the fixup-makefile.pl script Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | nginx: allow make check to fixup mirror hashYousong Zhou2018-07-09
| | | | | | | | | | | | The $(eval $(call Download,xx)) call need to be at the top level Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | nginx: add config symbols of rtmp,ts to PKG_CONFIG_DEPENDSYousong Zhou2018-07-09
|/ | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* nginx: bump and add build variant and other fixAnsuel Smith2018-07-06
| | | | | | | This add 2 variant of nginx so we can have package with SSL config flag preselected. This also add support for 2 more module and upgrade gninx to latest version. Also add myself as secondary maintainer to apply luci modification quickly. Use of autoreconf to fix problems with recompilation on every new build (even if the version is the same). Add a patch to ignore on invalid configure option instead of trow error. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: add luci-support packageAnsuel Smith2018-06-14
| | | | | | This adds an additional file for ngix that contains all the files need to make luci works on the nginx webserver. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: Package bump to 1.14.0Ansuel Smith2018-06-02
| | | | | | | This bump nginx package to latest stable. Also add support for the brotli compression module and head_more module. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
* nginx: update to 1.12.2Lucian Cristian2017-12-15
| | | | | | also fixes gcc7.2 compile Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* nginx: update lua-nginx to cdd2ae921f67bf396c743406493127be496e57ceThomas Heil2017-08-17
| | | | | | - fixes lua compilation issue Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
* nginx: update to 1.12.1Uwe Arnold2017-08-13
| | | | | | | | Fixes: CVE-2017-7529 remove PKG_MD5SUM as it is deprecated Signed-off-by: Uwe Arnold <donvipre@gmail.com>
* nginx: update to 1.12.0, the latest stable versionVal Kulkov2017-05-24
| | | | | | This is a straightforward update to the latest stable version. Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
* nginx: update to 1.10.3, add new module optionsVal Kulkov2017-02-01
| | | | | | | | | | | | | Update nginx to version 1.10.3. Add new configuration options to enable the following optional modules (disabled by default): - http_auth_request_module - http_v2_module - http_realip_module - http_secure_link_module Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
* nginx: bump version to latest stable 1.10.2heil2016-12-20
| | | | Signed-off-by: heil <heil@terminal-consulting.de>
* nginx: Bumped nginx-naxsi to v0.54Xotic7502016-06-06
| | | | Signed-off-by: Graham Fairweather <xotic750@gmail.com>
* nginx: Bumped to v1.10.1Xotic7502016-05-31
| | | | | | fixes NULL pointer dereference while writing client request body vulnerability (CVE-2016-4450). Signed-off-by: Graham Fairweather <xotic750@gmail.com>
* nginx: change start level to 80Dirk Feytons2016-05-10
| | | | Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
* nginx: correct f3c7cc6Dirk Feytons2016-05-10
| | | | Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
* nginx: correct errors from previous mergeheil2016-05-09
| | | | Signed-off-by: heil <heil@terminal-consulting.de>
* nginx: upstep to 1.10.0, add Lua module, footprint optimizationsDirk Feytons2016-04-29
| | | | Signed-off-by: Dirk Feytons <dirk.feytons@gmail.com>
* nginx: bump to version 1.9.13heil2016-03-30
| | | | Signed-off-by: heil <heil@terminal-consulting.de>