tatsuhiro-t / spdylay

The experimental SPDY protocol version 2, 3 and 3.1 implementation in C
http://tatsuhiro-t.github.io/spdylay/
MIT License
603 stars 102 forks source link

shrpx SPDY without SSL? #60

Closed nutinshell closed 11 years ago

nutinshell commented 11 years ago

haproxy now offers SPDY NPN, is it possible to run shrpx SPDY proxy without SSL?

tatsuhiro-t commented 11 years ago

Non-SSL for frontend or backend? I guess it is frontend because haproxy is mentioned, no?

nutinshell commented 11 years ago

Naked SPDY frames (without SSL) for haproxy's backend.

frontend spdy mode tcp bind :443 ssl crt /etc/stud/cert.pem npn spdy/3 use_backend spdy_cluster if { ssl_fc_npn -i spdy/3 } default_backend http_cluster

backend spdy_cluster mode tcp server srv01 127.0.0.1:64343 check #shrpx proxy server

tatsuhiro-t commented 11 years ago

Added in 7d709fa