|
7 | 7 | include swap
|
8 | 8 | include php
|
9 | 9 |
|
10 |
| - # install node js |
11 |
| - #class {'nodejs':} |
| 10 | + # configure whether we use vagrant or not |
| 11 | + $is_vagrant = true |
| 12 | + |
| 13 | + # config settings for local/remote setup |
| 14 | + if $is_vagrant == 'true' { |
| 15 | + |
| 16 | + # local settings for vagrant (for testing) |
| 17 | + apache2::site { "bxmediaus.com-http": |
| 18 | + sitedomain => "localhost", |
| 19 | + ssl_redirect => true, |
| 20 | + } |
| 21 | + |
| 22 | + $ssl_domain = "localhost" |
| 23 | + $ssl_have_certificates = false |
| 24 | + |
| 25 | + } else { |
| 26 | + |
| 27 | + apache2::site { "bxmediaus.com-http": |
| 28 | + sitedomain => "bxmediaus.com", |
| 29 | + ssl_redirect => true, |
| 30 | + } |
| 31 | + |
| 32 | + $ssl_domain = "bxmediaus.com" |
| 33 | + $ssl_have_certificates = true |
| 34 | + |
| 35 | + } |
12 | 36 |
|
13 | 37 | # Install apache
|
14 | 38 | class {'apache':
|
15 | 39 | mpm_module => prefork,
|
16 | 40 | }
|
17 | 41 |
|
18 |
| - # http , which redirect to ssl |
19 |
| - apache2::site { "bxmediaus.com-http": |
20 |
| - #sitedomain => "bxmediaus.com", |
21 |
| - sitedomain => "localhost", |
22 |
| - ssl_redirect => true, |
23 |
| - } |
24 |
| - |
25 | 42 | # define different rack environments
|
26 | 43 | $rack = [
|
27 | 44 | {'path' => '/trade','dir' => '/home/webapp/bxmediaus.com.wmtrade/current/public/'},
|
28 | 45 | {'path' => '/bicho','dir' => '/home/webapp/bxmediaus.com.bicho/current/public/'},
|
29 | 46 | {'path' => '/p2pexchange','dir' => '/home/webapp/bxmediaus.com.p2pexchange/current/public/'},
|
30 | 47 | {'path' => '/bitfication','dir' => '/home/webapp/bxmediaus.com.bitfication/current/public/'},
|
31 | 48 | ]
|
32 |
| - |
| 49 | + |
33 | 50 | # ssl
|
34 | 51 | apache2::site { "bxmediaus.com-ssl":
|
35 |
| - #sitedomain => "bxmediaus.com", |
36 |
| - sitedomain => "localhost", |
37 |
| - ssl => true, |
38 |
| - #ssl_have_certificates => true, |
39 |
| - ssl_have_certificates => false, |
40 |
| - rack_envs => $rack, |
41 |
| - documentroot => "/home/webapp/bxmediaus.com.wordpress/", |
42 |
| - priority => 25, |
43 |
| - before => Class['wordpress'], |
44 |
| - } |
| 52 | + sitedomain => $ssl_domain, |
| 53 | + ssl => true, |
| 54 | + ssl_have_certificates => $ssl_have_certificates, |
| 55 | + rack_envs => $rack, |
| 56 | + documentroot => "/home/webapp/bxmediaus.com.wordpress/", |
| 57 | + priority => 25, |
| 58 | + before => Class['wordpress'], |
| 59 | + } |
| 60 | + |
45 | 61 |
|
46 | 62 | # install wordpress?
|
47 | 63 | class { 'wordpress':
|
|
53 | 69 | create_db_user => false,
|
54 | 70 | }
|
55 | 71 |
|
56 |
| - # install ftp for wordpress plugins |
57 |
| - #class { 'vsftpd': |
58 |
| - # anonymous_enable => 'NO', |
59 |
| - # write_enable => 'YES', |
60 |
| - # ftpd_banner => 'FTP Server', |
61 |
| - # chroot_local_user => 'NO' |
62 |
| - # #userlist_enable => 'YES', |
63 |
| - # #userlist_file |
64 |
| - # #userlist_deny => 'NO', |
65 |
| - #} |
66 |
| - |
67 |
| - # TO DO: install VPN server http://www.howtogeek.com/51237/setting-up-a-vpn-pptp-server-on-debian/ |
68 |
| - |
69 |
| - # wordpress user (for ftp) |
70 |
| - #user { "wordpress": |
71 |
| - # ensure => present, |
72 |
| - # groups => ["wordpress"], |
73 |
| - # membership => minimum, |
74 |
| - # home => "/home/webapp/bxmediaus.com.wordpress", |
75 |
| - # password => '$1$Jp9gahZj$5fsPBPfikpkClvQASFkJ01', #password='default' (generated by `openssl passwd -1`) |
76 |
| - # require => Class['wordpress'], Group["wordpress"], |
77 |
| - #} |
78 | 72 |
|
79 | 73 | # make owner of dir
|
80 | 74 | exec { "wordpress chown":,
|
|
98 | 92 |
|
99 | 93 | Class["User"] -> Class["apache2"]
|
100 | 94 | Class["swap"] -> Class["passenger"] # passenger requires larger swap
|
| 95 | + |
| 96 | + |
| 97 | + # TO DO |
| 98 | + # |
| 99 | + # install ftp for wordpress plugins |
| 100 | + #class { 'vsftpd': |
| 101 | + # anonymous_enable => 'NO', |
| 102 | + # write_enable => 'YES', |
| 103 | + # ftpd_banner => 'FTP Server', |
| 104 | + # chroot_local_user => 'NO' |
| 105 | + # #userlist_enable => 'YES', |
| 106 | + # #userlist_file |
| 107 | + # #userlist_deny => 'NO', |
| 108 | + #} |
| 109 | + # |
| 110 | + # TO DO: install VPN server http://www.howtogeek.com/51237/setting-up-a-vpn-pptp-server-on-debian/ |
| 111 | + # |
| 112 | + # wordpress user (for ftp) |
| 113 | + #user { "wordpress": |
| 114 | + # ensure => present, |
| 115 | + # groups => ["wordpress"], |
| 116 | + # membership => minimum, |
| 117 | + # home => "/home/webapp/bxmediaus.com.wordpress", |
| 118 | + # password => '$1$Jp9gahZj$5fsPBPfikpkClvQASFkJ01', #password='default' (generated by `openssl passwd -1`) |
| 119 | + # require => Class['wordpress'], Group["wordpress"], |
| 120 | + #} |
| 121 | + |
101 | 122 | }
|
0 commit comments