summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@whissi.de>2016-08-02 14:43:42 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-08-09 09:22:04 +0200
commit8e825c84541e7d88387a864b9aefe3a30c7f2b8b (patch)
tree723e53cc10b77eddc13fcafc837f2217c6a96d00 /profiles
parentdev-util/jenkins-bin: version bump 2.12. (diff)
downloadgentoo-8e825c84541e7d88387a864b9aefe3a30c7f2b8b.tar.gz
gentoo-8e825c84541e7d88387a864b9aefe3a30c7f2b8b.tar.bz2
gentoo-8e825c84541e7d88387a864b9aefe3a30c7f2b8b.zip
www-servers/nginx: version bump to v1.11.3.
* Upstream added 3 new STREAM modules: - geo - geoip - split_clients * Each HTTP/STREAM upstream module can now be enabled/disabled using a dedicated USE flag Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/1999 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'profiles')
-rw-r--r--profiles/desc/nginx_modules_http.desc6
-rw-r--r--profiles/desc/nginx_modules_stream.desc8
2 files changed, 13 insertions, 1 deletions
diff --git a/profiles/desc/nginx_modules_http.desc b/profiles/desc/nginx_modules_http.desc
index f6c33cc8df22..8c5ffa7c4f4c 100644
--- a/profiles/desc/nginx_modules_http.desc
+++ b/profiles/desc/nginx_modules_http.desc
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation.
+# Copyright 1999-2016 Gentoo Foundation.
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -62,7 +62,11 @@ stub_status - This module provides the ability to get some status from nginx.
sub - This module can search and replace text in the nginx response.
upload_progress - This module adds the ability to track POST upload progress via JSON API
upstream_check - Add health check support for upstream servers.
+upstream_hash - This module provides the ability to distribute upstream requests based on hashed key value.
upstream_ip_hash - This module provides the ability to distribute upstream requests based on the IP-address of the client.
+upstream_keepalive - Thiis module provides the ability to cache connections to upstream servers.
+upstream_least_conn - This module provides the ability to distribute upstream requests using load balancing methods.
+upstream_zone - This module makes it possible to define a shared memory zone that keeps the group's configuration and run-time state that are shared between worker processes.
userid - This module gives out cookies for identification of clients.
uwsgi - External module for the uWSGI protocol for python web apps.
xslt - This module is a filter which converts an XML response with the aid of one or more XSLT templates.
diff --git a/profiles/desc/nginx_modules_stream.desc b/profiles/desc/nginx_modules_stream.desc
index bc20e2a82d53..d7634ac296b6 100644
--- a/profiles/desc/nginx_modules_stream.desc
+++ b/profiles/desc/nginx_modules_stream.desc
@@ -6,5 +6,13 @@
# Keep it sorted.
access - This module allows limiting access to certain client addresses.
+geo - This module creates variables, whose values depend on the IP-address of the client.
+geoip - This module creates variables based on the IP-address of the client matched against the MaxMind GeoIP binary files.
limit_conn - This module is used to limit the number of connections per the defined key.
+map - This module allows you to classify, or map a set of values into a different set of values and store the result in a variable.
+return - This module allows sending a specified value to the client and then closing the connection.
+split_clients - This module provides A/B testing support.
upstream - This module is used to define groups of servers that can be referenced by the proxy_pass directive.
+upstream_hash - This module provides the ability to distribute upstream requests based on hashed key value.
+upstream_least_conn - This module provides the ability to distribute upstream requests using load balancing methods.
+upstream_zone - This module makes it possible to define a shared memory zone that keeps the group's configuration and run-time state that are shared between worker processes.