Enabling spdy in nginx fails spdycheck.org
Posted
by
tulio84z
on Server Fault
See other posts from Server Fault
or by tulio84z
Published on 2014-05-29T17:22:51Z
Indexed on
2014/05/31
21:32 UTC
Read the original article
Hit count: 287
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
© Server Fault or respective owner