[Bug 595116] Re: ssl error reading the headers

2010-08-17 Thread Robert Grey
Confirmed fixed in maverick. -- ssl error reading the headers https://bugs.launchpad.net/bugs/595116 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to apache2 in ubuntu. -- Ubuntu-server-bugs mailing list

[Bug 595116] Re: ssl error reading the headers

2010-07-21 Thread Robert Grey
I moved to lighttpd. Since the change, the problem is resolved. -- ssl error reading the headers https://bugs.launchpad.net/bugs/595116 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to apache2 in ubuntu. -- Ubuntu-server-bugs mailing

[Bug 595116] Re: ssl error reading the headers

2010-06-27 Thread Robert Grey
I had the deflate module activated, but removing /etc/apache2/mods- enabled/deflate.* and restarting apache did not fix the problem. -- ssl error reading the headers https://bugs.launchpad.net/bugs/595116 You received this bug notification because you are a member of Ubuntu Server Team, which is

[Bug 595116] Re: ssl error reading the headers

2010-06-27 Thread Robert Grey
I moved /lib/i686 to /lib/i686.old and restarted apache. Did not fix the problem. Here is /proc/cpuinfo (this is on linode): processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 23 model name : Intel(R) Xeon(R) CPU L5420 @ 2.50GHz stepping

[Bug 595116] [NEW] ssl error reading the headers

2010-06-16 Thread Robert Grey
Public bug reported: Binary package hint: apache2 I'm getting irregular error reading the headers error messages when using basic authentication over SSL on apache2 2.2.14-5ubuntu8 on ubuntu 10.04. I enabled dumpio and it looks like the Authorization header is getting truncated. For example, the

[Bug 595116] Re: ssl error reading the headers

2010-06-16 Thread Robert Grey
I found a similar posting here: http://serverfault.com/questions/150976/problems-serving-svn-over-https- on-ubuntu-10-04 -- ssl error reading the headers https://bugs.launchpad.net/bugs/595116 You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed

[Bug 595116] Re: ssl error reading the headers

2010-06-16 Thread Robert Grey
here is a python script I use to force the error: import base64, httplib base64string = base64.encodestring('%s:%s' % (uname, password))[:-1] headers = { Authorization : Basic %s % base64string } while 1: conn = httplib.HTTPSConnection(host) conn.request(GET, /dist/test.txt,