Fix stunnel SSL options

This actually never worked properly before. Stunnel compares everything
in the value to all known options. So it was looking for an option named
literally "NO_SSLv2 NO_SSLv3".

Change-Id: Iaa04a2d4a2e6d7f527cf7112a12f19f20c0b1411
This commit is contained in:
Clint Byrum 2014-11-19 16:08:39 -08:00
parent 0884c8e4d6
commit 52165efbe6
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
pid = /var/run/stunnel4/from-heat.pid
cert = /etc/ssl/from-heat.crt
key = /etc/ssl/from-heat.key
options = NO_SSLv2 NO_SSLv3
options = NO_SSLv2
options = NO_SSLv3
{{#stunnel.ports}}
[{{name}}]