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

Unified Diff: modules/nginx/manifests/params.pp

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/init.pp ('k') | modules/nginx/templates/nginx.conf.erb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/nginx/manifests/params.pp
===================================================================
--- a/modules/nginx/manifests/params.pp
+++ b/modules/nginx/manifests/params.pp
@@ -2,16 +2,17 @@ class nginx::params {
$worker_processes = 2
$worker_connections = 1024
$multi_accept = off
$worker_rlimit_nofile = 30000
$sendfile = on
$keepalive_timeout = 15
$tcp_nodelay = on
$gzip = on
+ $ssl_session_cache = on
$user = $::operatingsystem ? {
/(?i-mx:debian|ubuntu)/ => 'www-data',
/(?i-mx:fedora|rhel|redhat|centos|scientific|suse|opensuse)/ => 'nginx',
}
$group = $::operatingsystem ? {
/(?i-mx:debian|ubuntu)/ => 'www-data',
« no previous file with comments | « modules/nginx/manifests/init.pp ('k') | modules/nginx/templates/nginx.conf.erb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld