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

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

Issue 9428006: Disable SSL cache on download servers (Closed)
Patch Set: Created Feb. 20, 2013, 9:49 a.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 | « modules/nginx/manifests/params.pp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/nginx/templates/nginx.conf.erb
===================================================================
--- a/modules/nginx/templates/nginx.conf.erb
+++ b/modules/nginx/templates/nginx.conf.erb
@@ -34,13 +34,15 @@ http {
gzip_disable "msie6";
gzip_min_length 100;
gzip_buffers 4 8k;
gzip_types text/plain text/xhtml text/css application/x-javascript text/xml application/atom+xml application/rss+xml;
<% end %>
ssl_ciphers RC4:ALL:-LOW:-EXPORT:!aNULL:!aECDH:!MD5;
ssl_prefer_server_ciphers on;
+ <% if ssl_session_cache == 'on' %>
ssl_session_cache shared:SSL:1m;
+ <% end %>
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
« no previous file with comments | « modules/nginx/manifests/params.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld