Enabling spdy in nginx fails spdycheck.org
- by tulio84z
I'm trying to enable spdy with nginx 1.6.0 but spdycheck.org is giving me two complaints:
And
My nginx configuration file is as such:
server {
listen 80;
listen 443 ssl spdy;
server_name 54.201.32.118;
ssl_certificate /etc/nginx/ssl/tulio.crt;
ssl_certificate_key /etc/nginx/ssl/tulio.key;
if ($ssl_protocol = "") {
rewrite ^ https://$server_name$request_uri? permanent;
}
root /usr/share/nginx/html;
index index.html index.htm;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
}
The other info of spdycheck you can find at:
http://spdycheck.org/#54.201.32.118