Added support for SPDY now that nginx 1.4 has arrived
This commit is contained in:
parent
8108779538
commit
9cb898f40d
2 changed files with 4 additions and 1 deletions
|
@ -28,6 +28,7 @@ class nginx::params {
|
|||
$nx_tcp_nodelay = on
|
||||
$nx_gzip = on
|
||||
$nx_server_tokens = off
|
||||
$nx_spdy = on
|
||||
|
||||
$nx_proxy_redirect = off
|
||||
$nx_proxy_set_header = [
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
server {
|
||||
listen <%= ssl_port %>;
|
||||
listen <%= ssl_port %><% if scope.lookupvar('nginx::params::nx_spdy') == 'on' %> ssl spdy<% end %>;
|
||||
<% if ipv6_enable == 'true' && (defined? ipaddress6) %>
|
||||
listen [<%= ipv6_listen_ip %>]:<%= ipv6_listen_port %> <% if @ipv6_listen_options %><%= ipv6_listen_options %><% end %> ipv6only=on;
|
||||
<% end %>
|
||||
|
@ -12,6 +12,8 @@ server {
|
|||
ssl_session_timeout 10m;
|
||||
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||
ssl_prefer_server_ciphers on;
|
||||
<% if scope.lookupvar('nginx::params::nx_spdy') == 'on' %>
|
||||
spdy_headers_comp 1;<% end %>
|
||||
|
||||
<% proxy_set_header.each do |header| %>
|
||||
proxy_set_header <%= header %>;<% end %>
|
||||
|
|
Loading…
Reference in a new issue