Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/nginx/templates/site.erb

Issue 29343006: Issue 4069 - Drop SPDY in favour of HTTP/2 (Closed)
Patch Set: Created May 24, 2016, 5:19 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/nginx/templates/site.erb
diff --git a/modules/nginx/templates/site.erb b/modules/nginx/templates/site.erb
index 6cd83376db922373162a0cabe31b1f353f40599d..5b99c183b6ee98143da5652347b8b91fc250788d 100644
--- a/modules/nginx/templates/site.erb
+++ b/modules/nginx/templates/site.erb
@@ -36,11 +36,11 @@
server_name <% server_name[domain, alt_names] %>;
<% if is_default %>
- listen 443 ssl spdy default_server;
- listen [::]:443 ssl spdy default_server;
+ listen 443 ssl http2 default_server;
+ listen [::]:443 ssl http2 default_server;
<% else %>
- listen 443 ssl spdy;
- listen [::]:443 ssl spdy;
+ listen 443 ssl http2;
+ listen [::]:443 ssl http2;
<% end %>
ssl_certificate <%= certificate %>;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld