675c6e
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c
675c6e
index 345914f..d23967f 100644
675c6e
--- a/src/event/ngx_event_openssl.c
675c6e
+++ b/src/event/ngx_event_openssl.c
675c6e
@@ -252,6 +252,8 @@ ngx_ssl_init(ngx_log_t *log)
675c6e
 ngx_int_t
675c6e
 ngx_ssl_create(ngx_ssl_t *ssl, ngx_uint_t protocols, void *data)
675c6e
 {
675c6e
+    ngx_uint_t prot = NGX_SSL_NO_PROT;
675c6e
+
675c6e
     ssl->ctx = SSL_CTX_new(SSLv23_method());
675c6e
 
675c6e
     if (ssl->ctx == NULL) {
675c6e
@@ -316,49 +318,54 @@ ngx_ssl_create(ngx_ssl_t *ssl, ngx_uint_t protocols, void *data)
675c6e
 
675c6e
     SSL_CTX_set_options(ssl->ctx, SSL_OP_SINGLE_DH_USE);
675c6e
 
675c6e
-#if OPENSSL_VERSION_NUMBER >= 0x009080dfL
675c6e
-    /* only in 0.9.8m+ */
675c6e
-    SSL_CTX_clear_options(ssl->ctx,
675c6e
-                          SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1);
675c6e
-#endif
675c6e
-
675c6e
-    if (!(protocols & NGX_SSL_SSLv2)) {
675c6e
-        SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_SSLv2);
675c6e
-    }
675c6e
-    if (!(protocols & NGX_SSL_SSLv3)) {
675c6e
-        SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_SSLv3);
675c6e
-    }
675c6e
-    if (!(protocols & NGX_SSL_TLSv1)) {
675c6e
-        SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_TLSv1);
675c6e
-    }
675c6e
-#ifdef SSL_OP_NO_TLSv1_1
675c6e
-    SSL_CTX_clear_options(ssl->ctx, SSL_OP_NO_TLSv1_1);
675c6e
-    if (!(protocols & NGX_SSL_TLSv1_1)) {
675c6e
-        SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_TLSv1_1);
675c6e
-    }
675c6e
+    if (protocols){
675c6e
+#ifdef SSL_OP_NO_TLSv1_3
675c6e
+        if (protocols & NGX_SSL_TLSv1_3) {
675c6e
+            prot = TLS1_3_VERSION;
675c6e
+        } else
675c6e
 #endif
675c6e
 #ifdef SSL_OP_NO_TLSv1_2
675c6e
-    SSL_CTX_clear_options(ssl->ctx, SSL_OP_NO_TLSv1_2);
675c6e
-    if (!(protocols & NGX_SSL_TLSv1_2)) {
675c6e
-        SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_TLSv1_2);
675c6e
-    }
675c6e
+        if (protocols & NGX_SSL_TLSv1_2) {
675c6e
+            prot =  TLS1_2_VERSION;
675c6e
+        } else
675c6e
 #endif
675c6e
-#ifdef SSL_OP_NO_TLSv1_3
675c6e
-    SSL_CTX_clear_options(ssl->ctx, SSL_OP_NO_TLSv1_3);
675c6e
-    if (!(protocols & NGX_SSL_TLSv1_3)) {
675c6e
-        SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_TLSv1_3);
675c6e
-    }
675c6e
+#ifdef SSL_OP_NO_TLSv1_1
675c6e
+        if (protocols & NGX_SSL_TLSv1_1) {
675c6e
+            prot = TLS1_1_VERSION;
675c6e
+        } else
675c6e
 #endif
675c6e
+        if (protocols & NGX_SSL_TLSv1) {
675c6e
+            prot = TLS1_VERSION;
675c6e
+        }
675c6e
+
675c6e
+        if (prot == NGX_SSL_NO_PROT) {
675c6e
+                    ngx_ssl_error(NGX_LOG_EMERG, ssl->log, 0,
675c6e
+                      "No SSL protocols available [hint: ssl_protocols]");
675c6e
+            return NGX_ERROR;
675c6e
+        }
675c6e
 
675c6e
-#ifdef SSL_CTX_set_min_proto_version
675c6e
-    SSL_CTX_set_min_proto_version(ssl->ctx, 0);
675c6e
-    SSL_CTX_set_max_proto_version(ssl->ctx, TLS1_2_VERSION);
675c6e
+        SSL_CTX_set_max_proto_version(ssl->ctx, prot);
675c6e
+
675c6e
+        /* Now, we have to scan for minimal protocol version,
675c6e
+         *without allowing holes between min and max*/
675c6e
+#if SSL_OP_NO_TLSv1_3
675c6e
+        if ((prot == TLS1_3_VERSION) && (protocols & NGX_SSL_TLSv1_2)) {
675c6e
+            prot = TLS1_2_VERSION;
675c6e
+        }
675c6e
 #endif
675c6e
 
675c6e
-#ifdef TLS1_3_VERSION
675c6e
-    SSL_CTX_set_min_proto_version(ssl->ctx, 0);
675c6e
-    SSL_CTX_set_max_proto_version(ssl->ctx, TLS1_3_VERSION);
675c6e
+#ifdef SSL_OP_NO_TLSv1_1
675c6e
+        if ((prot == TLS1_2_VERSION) && (protocols & NGX_SSL_TLSv1_1)) {
675c6e
+            prot = TLS1_1_VERSION;
675c6e
+        }
675c6e
+#endif
675c6e
+#ifdef SSL_OP_NO_TLSv1_2
675c6e
+        if ((prot == TLS1_1_VERSION) && (protocols & NGX_SSL_TLSv1)) {
675c6e
+            prot = TLS1_VERSION;
675c6e
+        }
675c6e
 #endif
675c6e
+        SSL_CTX_set_min_proto_version(ssl->ctx, prot);
675c6e
+    }
675c6e
 
675c6e
 #ifdef SSL_OP_NO_COMPRESSION
675c6e
     SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_COMPRESSION);
675c6e
diff --git a/src/event/ngx_event_openssl.h b/src/event/ngx_event_openssl.h
675c6e
index 61da0c5..fa7ac41 100644
675c6e
--- a/src/event/ngx_event_openssl.h
675c6e
+++ b/src/event/ngx_event_openssl.h
675c6e
@@ -145,6 +145,7 @@ typedef struct {
675c6e
 #endif
675c6e
 
675c6e
 
675c6e
+#define NGX_SSL_NO_PROT  0x0000
675c6e
 #define NGX_SSL_SSLv2    0x0002
675c6e
 #define NGX_SSL_SSLv3    0x0004
675c6e
 #define NGX_SSL_TLSv1    0x0008
675c6e
diff --git a/src/http/modules/ngx_http_ssl_module.c b/src/http/modules/ngx_http_ssl_module.c
675c6e
index b3f8f47..8340a12 100644
675c6e
--- a/src/http/modules/ngx_http_ssl_module.c
675c6e
+++ b/src/http/modules/ngx_http_ssl_module.c
675c6e
@@ -613,8 +613,7 @@ ngx_http_ssl_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
675c6e
     ngx_conf_merge_value(conf->early_data, prev->early_data, 0);
675c6e
 
675c6e
     ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
675c6e
-                         (NGX_CONF_BITMASK_SET|NGX_SSL_TLSv1
675c6e
-                          |NGX_SSL_TLSv1_1|NGX_SSL_TLSv1_2));
675c6e
+                         0)
675c6e
 
675c6e
     ngx_conf_merge_size_value(conf->buffer_size, prev->buffer_size,
675c6e
                          NGX_SSL_BUFSIZE);
675c6e
diff --git a/src/mail/ngx_mail_ssl_module.c b/src/mail/ngx_mail_ssl_module.c
675c6e
index 5544f75..3316a4b 100644
675c6e
--- a/src/mail/ngx_mail_ssl_module.c
675c6e
+++ b/src/mail/ngx_mail_ssl_module.c
675c6e
@@ -291,8 +291,7 @@ ngx_mail_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child)
675c6e
                          prev->prefer_server_ciphers, 0);
675c6e
 
675c6e
     ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
675c6e
-                         (NGX_CONF_BITMASK_SET|NGX_SSL_TLSv1
675c6e
-                          |NGX_SSL_TLSv1_1|NGX_SSL_TLSv1_2));
675c6e
+                         0);
675c6e
 
675c6e
     ngx_conf_merge_uint_value(conf->verify, prev->verify, 0);
675c6e
     ngx_conf_merge_uint_value(conf->verify_depth, prev->verify_depth, 1);
675c6e
diff --git a/src/stream/ngx_stream_ssl_module.c b/src/stream/ngx_stream_ssl_module.c
675c6e
index ec9524e..37af046 100644
675c6e
--- a/src/stream/ngx_stream_ssl_module.c
675c6e
+++ b/src/stream/ngx_stream_ssl_module.c
675c6e
@@ -625,8 +625,7 @@ ngx_stream_ssl_merge_conf(ngx_conf_t *cf, void *parent, void *child)
675c6e
                          prev->prefer_server_ciphers, 0);
675c6e
 
675c6e
     ngx_conf_merge_bitmask_value(conf->protocols, prev->protocols,
675c6e
-                         (NGX_CONF_BITMASK_SET|NGX_SSL_TLSv1
675c6e
-                          |NGX_SSL_TLSv1_1|NGX_SSL_TLSv1_2));
675c6e
+                         0);
675c6e
 
675c6e
     ngx_conf_merge_uint_value(conf->verify, prev->verify, 0);
675c6e
     ngx_conf_merge_uint_value(conf->verify_depth, prev->verify_depth, 1);