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

Side by Side Diff: manifests/webserver.pp

Issue 4832213438824448: Issue 2147 - Set up a server for testpages.adblockplus.org (Closed)
Patch Set: Created April 20, 2015, 6:01 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | modules/private-stub/files/testpages.adblockplus.org_sslcert.key » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | modules/private-stub/files/testpages.adblockplus.org_sslcert.key » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld