Comment #9 on issue 1284 by jordan.a...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I'm also seeing this error, and only for Chrome 16+. I don't have the
option of doing reverse proxy since I'm using the uwsgi handler. Is there
any solution for me other than recompiling? I'm not comfortable commenting
out lines of code without understanding the full effect of doing so.
Also, is this related using the uwsgi handler or is it any handler? The
comments above suggest that changes to Cherokee could fix this, but I was
unsure whether the problem exists in the server or the handler.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #10 on issue 1284 by aminl...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I'm using the fcgi handler, so it's not just uwsgi...
Reverse proxy can be an option, but only if you defer http processing
to another app, like gunicorn.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #11 on issue 1284 by scai...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Today has been released Chrome 16, and Cherokee has problems with the
Googles TLS False Start.
All the SSL post will be fail.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #12 on issue 1284 by aminl...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Any word on this?
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #13 on issue 1284 by ste...@konink.de: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
See the other bug report. We are working on the new-event branch. It is not
production grade yet. But it looks promising.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #14 on issue 1284 by arsi.hal...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Hi Stefan, What other bug report are you referring to?
We are deploying new servers with Cherokee version 1.2.101 + uWSGI + Django
and seem to have this same issue with Chrome users. Any suggestion how to
fix this.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #15 on issue 1284 by aminl...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
You can find a package with the quick fix (commenting out that line) that
Stefan posted about at https://launchpad.net/~sciyoshi/+archive/ppa
We've been using the package from that ppa in production for a few weeks.
It's was compiled for natty, but it installs fine on oneiric so we didn't
recompile.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #16 on issue 1284 by shen...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Here are my notes/log from a chat with Stefan on #cherokee IRC about the
issue:
https://gist.github.com/eb2a5f7741efb1d0053d
I believe this is the offending line that needs to be commented out:
https://github.com/cherokee/webserver/blob/master/cherokee/thread.c#L771
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #17 on issue 1284 by ste...@konink.de: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Today I have deployed the 'new-events' branch
https://github.com/cherokee/webserver/tree/new-events to all our servers
taking SSL post requests. Most likely Alvaro will merge soon.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #18 on issue 1284 by lnu...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
is the package https://launchpad.net/~sciyoshi/+archive/ppa Working Fine
so I can take the patch and release a new cherokee packages for launchpad
and add the patch to Debian Unstable ?
or sould I wait for the new cherokee release with 'new-events' for the new
packages?
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #19 on issue 1284 by arsi.hal...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
We re-compiled the Cherokee with the quickfix and it seems to be working
fine. We are now running Cherokee + uWSGI + Django on Ubuntu 10.04 without
problems.
Thanks!
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #20 on issue 1284 by ste...@konink.de: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Wait till new-events is ready.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #29 on issue 1284 by jordan.a...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I was able to bypass the error as well, using the version at
http://www.cherokee-project.com/download/pre-releases/cherokee-1.3.0A2.tar.gz
This worked for me on Ubuntu 11.10
#download latest dev version of cherokee
wget
http://www.cherokee-project.com/download/pre-releases/cherokee-1.3.0A2.tar.gz
tar -zxvf cherokee-1.3.0
#remove current version
/etc/init.d/cherokee stop
sudo apt-get remove cherokee cherokee-admin
cp contrib/cherokee /etc/init.d/
./configure --localstatedir=/var --prefix=/usr --sysconfdir=/etc
--with-wwwroot=/var/www
make
sudo make install
/etc/init.d/cherokee start
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #30 on issue 1284 by jordan.a...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I was able to bypass the error as well, using the version at
http://www.cherokee-project.com/download/pre-releases/cherokee-1.3.0A2.tar.gz
This worked for me on Ubuntu 11.10
#download latest dev version of cherokee
wget
http://www.cherokee-project.com/download/pre-releases/cherokee-1.3.0A2.tar.gz
tar -zxvf cherokee-1.3.0
#remove current version
/etc/init.d/cherokee stop
sudo apt-get remove cherokee cherokee-admin
cd cherokee-1.3.0
cp contrib/cherokee /etc/init.d/
./configure --localstatedir=/var --prefix=/usr --sysconfdir=/etc
--with-wwwroot=/var/www
make
sudo make install
/etc/init.d/cherokee start
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #31 on issue 1284 by peter.bo...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I can confirm the issue is resolved by upgrading from 1.2.101 to 1.3.0A2.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #32 on issue 1284 by adrian.p...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Unfortunately upgrading to 1.3.0A2 didn't resolve the issue for me.
I still get:
"IOError: error waiting for wsgi.input data" from Chrome 16.0.912.75 on
WIN32 when trying to post data over HTTPS.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #33 on issue 1284 by martin.b...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I had this problem too with Chrome 16 too. I just upgraded to Chrome 17 and
this problem seems gone now.
Can anyone confirm this?
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #34 on issue 1284 by andreas....@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
Yes, I can confirm this. Having OSX 10.6.8 and Chrome 17.0.963.46. Problem
seems to be gone.
(Are we safe that the problem does not come back again in Chrome?)
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #35 on issue 1284 by martin.b...@gmail.com: SSL POST REQUESTS break
on Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
I hope so but I really don't know. Nevertheless I hope Cherokee 1.3 stable
will be out soon.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)
Comment #36 on issue 1284 by sare...@gmail.com: SSL POST REQUESTS break on
Chrome 15
http://code.google.com/p/cherokee/issues/detail?id=1284
It seems Chrome started forcing its "false start" feature (an optimization
of TSL handshakes,
http://www.imperialviolet.org/2011/08/31/falsestartupgrade.html) around
version 15. My guess is that now with version 17 they have tweaked the
feature so it falls back to its prior working protocol for compatibility.
_______________________________________________
Cherokee-dev mailing list
Cherokee-
http://lists.octality.com/listinfo/cherokee-dev
)