OLD | NEW |
1 node 'web2' { | 1 node 'web2' { |
2 include statsclient | |
3 | 2 |
4 class {'web::server': | 3 class {'web::server': |
5 vhost => 'adblockplus.org', | 4 vhost => 'adblockplus.org', |
6 certificate => 'adblockplus.org_sslcert.pem', | 5 certificate => 'adblockplus.org_sslcert.pem', |
7 private_key => 'adblockplus.org_sslcert.key', | 6 private_key => 'adblockplus.org_sslcert.key', |
8 is_default => true, | 7 is_default => true, |
9 aliases => ['www.adblockplus.org'], | 8 aliases => ['www.adblockplus.org'], |
10 custom_config => template('web/adblockplus.org.conf.erb'), | 9 custom_config => template('web/adblockplus.org.conf.erb'), |
11 repository => 'web.adblockplus.org', | 10 repository => 'web.adblockplus.org', |
12 multiplexer_locations => ['/getSubscription'], | 11 multiplexer_locations => ['/getSubscription'], |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 minute => '5-55/10', | 92 minute => '5-55/10', |
94 } | 93 } |
95 | 94 |
96 adblockplus::log::rotation {'nginx_email_submission': | 95 adblockplus::log::rotation {'nginx_email_submission': |
97 count => 120, | 96 count => 120, |
98 ensure => 'present', | 97 ensure => 'present', |
99 interval => 'monthly', | 98 interval => 'monthly', |
100 path => '/var/log/nginx/email_submission', | 99 path => '/var/log/nginx/email_submission', |
101 } | 100 } |
102 } | 101 } |
OLD | NEW |