Implement nginx spdy support

This commit is contained in:
Stafford Brunk
2014-04-03 07:20:18 -06:00
parent dfac47cbe2
commit 22c25dc40a

View File

@@ -37,11 +37,13 @@ server {
}
server {
listen [::]:443 ssl;
listen 443 ssl;
listen [::]:443 ssl spdy;
listen 443 ssl spdy;
server_name $hostname;
$SSL_DIRECTIVES
keepalive_timeout 70;
add_header Alternate-Protocol 443:npn-spdy/2;
location / {
proxy_pass http://$APP;