diff options
author | Thomas Heil <heil@terminal-consulting.de> | 2014-06-24 19:30:53 +0200 |
---|---|---|
committer | Thomas Heil <heil@terminal-consulting.de> | 2014-06-24 19:30:53 +0200 |
commit | 50862c6c3e80acb03e566626f9fe1cde5c93134e (patch) | |
tree | fa0589f6fed063e28e764a9db90347349a4371c5 /net/nginx | |
parent | 17925c4e3377d4eee94301b1dc8e1698a016e098 (diff) |
nginx: fix dependence to NGINX_SSL
the upstream_check and proxyprotocol module need NGINX_SSL. So remove them
from default and add the according dependence.
Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
Diffstat (limited to 'net/nginx')
-rw-r--r-- | net/nginx/Config.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/nginx/Config.in b/net/nginx/Config.in index 2597f7fb6..b135e42d4 100644 --- a/net/nginx/Config.in +++ b/net/nginx/Config.in @@ -170,9 +170,10 @@ config NGINX_PROXYPROTOCOL bool prompt "Enable HAProxy proxyprotocol" select PACKAGE_nginx-proxyprotocol - default y + select NGINX_SSL + default n help - Enable support for NAXSI WAF. + Enable support for PROXY PROTOCOL config NGINX_SYSLOG bool @@ -184,7 +185,8 @@ config NGINX_SYSLOG config NGINX_HTTP_UPSTREAM_CHECK bool + select NGINX_SSL prompt "Enable HTTP upstream check module" - default y + default n endmenu |