Nginx + SPDY

I'm also using it live on digitalpoint.com with latest Nginx and SPDY patch... what were your compile options for Nginx?
 
Hmmm... pretty vanilla compile... does it work okay with just normal HTTP and HTTPS?

This is my compile options (mine's pretty vanilla too, other than just moving locations of stuff around):

Code:
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --pid-path=/var/run/nginx.pid --error-log-path=/usr/log/ngnix/error.log --http-log-path=/usr/log/ngnix/access.log --with-openssl=/home/software_source/openssl-1.0.1e --with-cc-opt="-I /usr/local/ssl/include" --with-ld-opt="-L /usr/local/ssl/lib" --without-http_ssi_module --with-http_ssl_module --with-http_stub_status_module --with-http_spdy_module
 
Hmmm... pretty vanilla compile... does it work okay with just normal HTTP and HTTPS?

This is my compile options (mine's pretty vanilla too, other than just moving locations of stuff around):

Code:
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --pid-path=/var/run/nginx.pid --error-log-path=/usr/log/ngnix/error.log --http-log-path=/usr/log/ngnix/access.log --with-openssl=/home/software_source/openssl-1.0.1e --with-cc-opt="-I /usr/local/ssl/include" --with-ld-opt="-L /usr/local/ssl/lib" --without-http_ssi_module --with-http_ssl_module --with-http_stub_status_module --with-http_spdy_module

Hmm, it is pretty much vanilla. Yep, works fine over normal HTTP/HTTPS. I only noticed the issue when someone in Chrome couldn't get to the site
 
Hmmm... pretty vanilla compile... does it work okay with just normal HTTP and HTTPS?

This is my compile options (mine's pretty vanilla too, other than just moving locations of stuff around):

Code:
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --pid-path=/var/run/nginx.pid --error-log-path=/usr/log/ngnix/error.log --http-log-path=/usr/log/ngnix/access.log --with-openssl=/home/software_source/openssl-1.0.1e --with-cc-opt="-I /usr/local/ssl/include" --with-ld-opt="-L /usr/local/ssl/lib" --without-http_ssi_module --with-http_ssl_module --with-http_stub_status_module --with-http_spdy_module
You have some misspelled path name, ngnix instead of nginx
 
Yeah... I had two different issues that resulted in really quick patches. Their devs are quite fantastic.
nginx 1.3.15 was released today
It seems like the spdy patch for it is not clean.

andy@webserver:/usr/src/nginx/nginx-1.3.15$ sudo patch -p1 < patch.spdy.txt
patching file src/http/ngx_http_request.c
Hunk #1 FAILED at 10.
Hunk #2 FAILED at 308.
Hunk #3 FAILED at 363.
Hunk #4 FAILED at 377.
Hunk #5 FAILED at 425.
Hunk #6 FAILED at 592.
Hunk #7 FAILED at 620.
7 out of 7 hunks FAILED -- saving rejects to file src/http/ngx_http_request.c.rej
patching file src/http/ngx_http_request.c
Reversed (or previously applied) patch detected! Assume -R? [n]
 
Top Bottom