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

Side by Side Diff: modules/nginx/templates/nginx.conf.erb

Issue 10630004: Make all our applications work with Nginx 1.4.1 (Closed)
Patch Set: Created May 22, 2013, 4:47 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 user <%= scope.lookupvar('nginx::params::user') %> <%= scope.lookupvar('nginx::p arams::group') %>; 1 user <%= scope.lookupvar('nginx::params::user') %> <%= scope.lookupvar('nginx::p arams::group') %>;
2 worker_processes <%= worker_processes %>; 2 worker_processes <%= worker_processes %>;
3 3
4 error_log /var/log/nginx/error.log notice; 4 error_log /var/log/nginx/error.log notice;
5 pid /var/run/nginx.pid; 5 pid /var/run/nginx.pid;
6 6
7 events { 7 events {
8 worker_connections <%= worker_connections %>; 8 worker_connections <%= worker_connections %>;
9 <% if scope.lookupvar('nginx::params::multi_accept') == 'on' %>multi_accept on ;<% end %> 9 <% if scope.lookupvar('nginx::params::multi_accept') == 'on' %>multi_accept on ;<% end %>
10 } 10 }
(...skipping 27 matching lines...) Expand all
38 <% end %> 38 <% end %>
39 39
40 ssl_ciphers RC4:ALL:-LOW:-EXPORT:!aNULL:!aECDH:!MD5; 40 ssl_ciphers RC4:ALL:-LOW:-EXPORT:!aNULL:!aECDH:!MD5;
41 ssl_prefer_server_ciphers on; 41 ssl_prefer_server_ciphers on;
42 <% if ssl_session_cache == 'on' %> 42 <% if ssl_session_cache == 'on' %>
43 ssl_session_cache shared:SSL:1m; 43 ssl_session_cache shared:SSL:1m;
44 <% end %> 44 <% end %>
45 45
46 types_hash_max_size 2048; 46 types_hash_max_size 2048;
47 47
48 server_names_hash_bucket_size 64;
Felix Dahlke 2013/05/22 04:50:28 This was necessary for intraforum.adblockplus.org.
49
48 include /etc/nginx/conf.d/*.conf; 50 include /etc/nginx/conf.d/*.conf;
49 include /etc/nginx/sites-enabled/*; 51 include /etc/nginx/sites-enabled/*;
50 } 52 }
OLDNEW
« modules/nginx/manifests/init.pp ('K') | « modules/nginx/manifests/init.pp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld