OLD | NEW |
1 node 'web1' { | 1 node 'web1' { |
2 include statsclient | 2 include statsclient |
3 | 3 |
4 class {'web::server': | 4 class {'web::server': |
5 vhost => 'eyeo.com', | 5 vhost => 'eyeo.com', |
6 certificate => 'eyeo.com_sslcert.pem', | 6 certificate => 'eyeo.com_sslcert.pem', |
7 private_key => 'eyeo.com_sslcert.key', | 7 private_key => 'eyeo.com_sslcert.key', |
8 is_default => true, | 8 is_default => true, |
9 aliases => ['www.eyeo.com', 'eyeo.de', 'www.eyeo.de'], | 9 aliases => ['www.eyeo.com', 'eyeo.de', 'www.eyeo.de'], |
10 custom_config => ' | 10 custom_config => ' |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 79 |
80 cron {'update_repository_subscriptionlist': | 80 cron {'update_repository_subscriptionlist': |
81 ensure => present, | 81 ensure => present, |
82 environment => ['MAILTO=admins@adblockplus.org'], | 82 environment => ['MAILTO=admins@adblockplus.org'], |
83 command => "hg pull --quiet --repository $subscriptions_repo", | 83 command => "hg pull --quiet --repository $subscriptions_repo", |
84 user => 'sitescripts', | 84 user => 'sitescripts', |
85 minute => '*/10', | 85 minute => '*/10', |
86 require => Exec['fetch_repository_subscriptionlist'] | 86 require => Exec['fetch_repository_subscriptionlist'] |
87 } | 87 } |
88 } | 88 } |
| 89 |
| 90 node 'web3' { |
| 91 include statsclient |
| 92 |
| 93 class {'web::server': |
| 94 vhost => 'testpages.adblockplus.org', |
| 95 certificate => 'testpages.adblockplus.org_sslcert.pem', |
| 96 private_key => 'testpages.adblockplus.org_sslcert.key', |
| 97 is_default => true, |
| 98 repository => 'testpages.adblockplus.org', |
| 99 } |
| 100 } |
OLD | NEW |