Yes, thank you @telephone.
To enable SPDY on nginx with the above config:
# Redirect HTTP traffic to the HTTPS host
server {
listen 0.0.0.0:80;
listen [::]:80;
server_name YOUR_SERVER_FQDN;
server_tokens off;
return 301 https://$server_name$request_uri;
# ...
}
#...