Removed SSLv2 methods from serviceInitSSL because OpenSSL 1.1.0 does not support them.

This commit is contained in:
Markus Makela
2015-06-17 10:20:00 +03:00
parent a2c2565ec2
commit 3ce3a1ae66
2 changed files with 1 additions and 2 deletions

View File

@ -349,7 +349,6 @@ This is the Certificate Authority file. It will be used to verify that both the
### `ssl_version`
This parameter controls the level of encryption used. Accepted values are:
* SSLv2
* SSLv3
* TLSv10
* TLSv11

View File

@ -11,5 +11,5 @@ ssl | disabled, enabled, required |`disable` disables SSL, `enabled` ena
ssl_cert | path to file |Path to server certificate
ssl_key | path to file |Path to server private key
ssl_ca_cert | path to file |Path to Certificate Authority file
ssl_version|SSLV2,SSLV3,TLSV10,TLSV11,TLSV12,MAX| The SSL method level, defaults to highest available encryption level which is TLSv1.2
ssl_version|SSLV3,TLSV10,TLSV11,TLSV12,MAX| The SSL method level, defaults to highest available encryption level which is TLSv1.2
ssl_cert_verify_depth|integer|Certificate authority certificate verification depth, default is 100.