dpaluy
dpaluy

Reputation: 3705

Can I use SPDY with Unicorn?

I would like to use SPDY with my Rails application. I saw solutions how to setup SPDY with NGINX + Passenger and also SPDY with Apache (mod_spdy).

Can I use SPDY with Unicorn and NGINX? How to configure it?

Thanks

Upvotes: 3

Views: 482

Answers (2)

VBart
VBart

Reputation: 15110

You can use nginx spdy module with Unicorn, there is nothing special about it. Just read the documentation: http://nginx.org/en/docs/http/ngx_http_spdy_module.html

Upvotes: 1

Allen
Allen

Reputation: 834

SPDY is only implemented on the web server, like NGINX or Apache. Unicorn has nothing to do with this. So you can patch up your web server and since Unicorn is an application server, it should have no effect on this.

Upvotes: 0

Related Questions