Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Source SPDY Proxy

Tags:

proxy

spdy

Has anyone developed an open source SPDY proxy?

I can't find one via Google, but I believe the Amazon Silk browser uses one?

like image 442
Alex Chamberlain Avatar asked Jun 01 '12 12:06

Alex Chamberlain


3 Answers

I wrote SPDY reverse proxy called shrpx in C/C++. It also serves as SSL/SPDY proxy with squid as backend server.

like image 53
Tatsuhiro Tsujikawa Avatar answered Nov 15 '22 19:11

Tatsuhiro Tsujikawa


The SPDY proxy has been implemented in jetty:

https://groups.google.com/forum/?fromgroups#!topic/spdy-dev/and5OLY4AsI

We've finished the basic documentation which can be found here: http://www.eclipse.org/jetty/documentation/current/spdy-configuring-proxy.html

The proxy is now also able to receive SPDY and talk plain HTTP to an upstream server to terminate SPDY on the frontend servers for example.

like image 34
Thomas Becker Avatar answered Nov 15 '22 17:11

Thomas Becker


Jetty SPDY does not provide directly a SPDY proxy, but provides both SPDY client and SPDY server functionalities - in Java - that are needed to build a proxy.

We may be working on a SPDY proxy in the next future.

like image 29
sbordet Avatar answered Nov 15 '22 17:11

sbordet