nginx: fix dependence to NGINX_SSL
authorThomas Heil <heil@terminal-consulting.de>
Tue, 24 Jun 2014 17:30:53 +0000 (19:30 +0200)
committerThomas Heil <heil@terminal-consulting.de>
Tue, 24 Jun 2014 17:30:53 +0000 (19:30 +0200)
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>
net/nginx/Config.in

index 2597f7fb64ca997e8f479b2a58b1db51d4a294cc..b135e42d4f9b223594d98f3ae7517d951558d1e9 100644 (file)
@@ -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