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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 include statsclient | 91 include statsclient |
92 | 92 |
93 class {'web::server': | 93 class {'web::server': |
94 vhost => 'testpages.adblockplus.org', | 94 vhost => 'testpages.adblockplus.org', |
95 certificate => 'testpages.adblockplus.org_sslcert.pem', | 95 certificate => 'testpages.adblockplus.org_sslcert.pem', |
96 private_key => 'testpages.adblockplus.org_sslcert.key', | 96 private_key => 'testpages.adblockplus.org_sslcert.key', |
97 is_default => true, | 97 is_default => true, |
98 repository => 'testpages.adblockplus.org', | 98 repository => 'testpages.adblockplus.org', |
99 } | 99 } |
100 } | 100 } |
| 101 |
| 102 node 'web-sh-abp-org-1' { |
| 103 include statsclient |
| 104 |
| 105 class {'web::server': |
| 106 vhost => 'share.adblockplus.org', |
| 107 certificate => 'share.adblockplus.org_sslcert.pem', |
| 108 private_key => 'share.adblockplus.org_sslcert.key', |
| 109 is_default => true, |
| 110 repository => 'share.adblockplus.org', |
| 111 } |
| 112 } |
| 113 |
| 114 node 'web-yt-abp-me-1' { |
| 115 include statsclient |
| 116 |
| 117 class {'web::server': |
| 118 vhost => 'youtube.adblockplus.me', |
| 119 certificate => 'youtube.adblockplus.me_sslcert.pem', |
| 120 private_key => 'youtube.adblockplus.me_sslcert.key', |
| 121 is_default => true, |
| 122 repository => 'youtube.adblockplus.me', |
| 123 } |
| 124 } |
| 125 |
| 126 node 'web-fb-abp-me-1' { |
| 127 include statsclient |
| 128 |
| 129 class {'web::server': |
| 130 vhost => 'facebook.adblockplus.me', |
| 131 certificate => 'facebook.adblockplus.me_sslcert.pem', |
| 132 private_key => 'facebook.adblockplus.me_sslcert.key', |
| 133 is_default => true, |
| 134 repository => 'facebook.adblockplus.me', |
| 135 } |
| 136 } |
| 137 |
| 138 node 'web-aa-org-1' { |
| 139 include statsclient |
| 140 |
| 141 class {'web::server': |
| 142 vhost => 'acceptableads.org', |
| 143 certificate => 'acceptableads.org_sslcert.pem', |
| 144 private_key => 'acceptableads.org_sslcert.key', |
| 145 is_default => true, |
| 146 repository => 'web.acceptableads.org', |
| 147 } |
| 148 } |
OLD | NEW |