package/nginx: add stream realip option

stream realip is available since version 1.11.4 and
fe2774a9d6

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2020-09-20 10:13:52 +02:00 committed by Thomas Petazzoni
parent ce0e86b293
commit 456aa0fb7e
2 changed files with 9 additions and 0 deletions

View File

@ -328,6 +328,11 @@ config BR2_PACKAGE_NGINX_STREAM
if BR2_PACKAGE_NGINX_STREAM
config BR2_PACKAGE_NGINX_STREAM_REALIP_MODULE
bool "ngx_stream_realip_module"
help
Enable ngx_stream_realip_module
config BR2_PACKAGE_NGINX_STREAM_SSL_MODULE
bool "ngx_stream_ssl_module"
select BR2_PACKAGE_OPENSSL

View File

@ -224,6 +224,10 @@ endif # BR2_PACKAGE_NGINX_MAIL
ifeq ($(BR2_PACKAGE_NGINX_STREAM),y)
NGINX_CONF_OPTS += --with-stream
ifeq ($(BR2_PACKAGE_NGINX_STREAM_REALIP_MODULE),y)
NGINX_CONF_OPTS += --with-stream_realip_module
endif
ifeq ($(BR2_PACKAGE_NGINX_STREAM_SSL_MODULE),y)
NGINX_DEPENDENCIES += openssl
NGINX_CONF_OPTS += --with-stream_ssl_module