Disable SSLv2 by default
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2382 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
832ff277f2
commit
e62b8c19bc
1
NEWS
1
NEWS
|
@ -28,6 +28,7 @@ NEWS
|
|||
* Fix wrong malloc sizes in mod_accesslog (probably nothing bad happened...) (fixes #1855, thx ycheng)
|
||||
* Some small buffer.c fixes (closes #1837)
|
||||
* Remove floating point math from server.c (fixes #1402)
|
||||
* Disable SSLv2 by default
|
||||
|
||||
- 1.4.20 - 2008-09-30
|
||||
|
||||
|
|
|
@ -159,7 +159,7 @@ static int config_insert(server *srv) {
|
|||
s->max_write_idle = 360;
|
||||
s->use_xattr = 0;
|
||||
s->is_ssl = 0;
|
||||
s->ssl_use_sslv2 = 1;
|
||||
s->ssl_use_sslv2 = 0;
|
||||
s->use_ipv6 = 0;
|
||||
#ifdef HAVE_LSTAT
|
||||
s->follow_symlink = 1;
|
||||
|
|
Loading…
Reference in New Issue