visfleet-deprec 2.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. data/CHANGELOG +398 -0
  2. data/COPYING +19 -0
  3. data/LICENSE +339 -0
  4. data/README +154 -0
  5. data/THANKS +17 -0
  6. data/bin/depify +139 -0
  7. data/docs/EXAMPLE-installing_tracks.txt +41 -0
  8. data/docs/README.nagios +22 -0
  9. data/docs/README.rails +17 -0
  10. data/docs/config_gen_explained.txt +39 -0
  11. data/docs/deprec-1.x/deprec-1.x.quickstart +50 -0
  12. data/docs/deprec-1.x/notes.txt +12 -0
  13. data/docs/old/deprec_banner.gif +0 -0
  14. data/docs/windows_linux.txt +350 -0
  15. data/docs/xen/traffic_monitoring_with_vnstat.txt +95 -0
  16. data/docs/xen/xen-tools-notes.txt +31 -0
  17. data/docs/xen/xen_on_hardy.txt +39 -0
  18. data/lib/deprec.rb +8 -0
  19. data/lib/deprec/capistrano_extensions.rb +438 -0
  20. data/lib/deprec/recipes.rb +7 -0
  21. data/lib/deprec/recipes/aoe.rb +79 -0
  22. data/lib/deprec/recipes/app/mongrel.rb +213 -0
  23. data/lib/deprec/recipes/app/passenger.rb +270 -0
  24. data/lib/deprec/recipes/ar_sendmail.rb +67 -0
  25. data/lib/deprec/recipes/canonical.rb +68 -0
  26. data/lib/deprec/recipes/chef.rb +68 -0
  27. data/lib/deprec/recipes/collectd.rb +112 -0
  28. data/lib/deprec/recipes/db/couchdb.rb +107 -0
  29. data/lib/deprec/recipes/db/mysql.rb +139 -0
  30. data/lib/deprec/recipes/db/postgresql.rb +104 -0
  31. data/lib/deprec/recipes/db/sqlite.rb +37 -0
  32. data/lib/deprec/recipes/ddclient.rb +51 -0
  33. data/lib/deprec/recipes/deprec.rb +199 -0
  34. data/lib/deprec/recipes/deprecated.rb +71 -0
  35. data/lib/deprec/recipes/example.rb +115 -0
  36. data/lib/deprec/recipes/git.rb +97 -0
  37. data/lib/deprec/recipes/gitosis.rb +55 -0
  38. data/lib/deprec/recipes/haproxy.rb +106 -0
  39. data/lib/deprec/recipes/heartbeat.rb +138 -0
  40. data/lib/deprec/recipes/integrity.rb +108 -0
  41. data/lib/deprec/recipes/logrotate.rb +54 -0
  42. data/lib/deprec/recipes/lvm.rb +20 -0
  43. data/lib/deprec/recipes/memcache.rb +49 -0
  44. data/lib/deprec/recipes/monit.rb +143 -0
  45. data/lib/deprec/recipes/nagios.rb +330 -0
  46. data/lib/deprec/recipes/network.rb +93 -0
  47. data/lib/deprec/recipes/ntp.rb +103 -0
  48. data/lib/deprec/recipes/php.rb +58 -0
  49. data/lib/deprec/recipes/postfix.rb +115 -0
  50. data/lib/deprec/recipes/rails.rb +337 -0
  51. data/lib/deprec/recipes/ruby/mri.rb +55 -0
  52. data/lib/deprec/recipes/ruby/ree.rb +40 -0
  53. data/lib/deprec/recipes/sphinx.rb +86 -0
  54. data/lib/deprec/recipes/ssh.rb +111 -0
  55. data/lib/deprec/recipes/ssl.rb +56 -0
  56. data/lib/deprec/recipes/starling.rb +119 -0
  57. data/lib/deprec/recipes/svn.rb +171 -0
  58. data/lib/deprec/recipes/syslog.rb +63 -0
  59. data/lib/deprec/recipes/trac.rb +277 -0
  60. data/lib/deprec/recipes/ubuntu.rb +35 -0
  61. data/lib/deprec/recipes/users.rb +90 -0
  62. data/lib/deprec/recipes/utils.rb +58 -0
  63. data/lib/deprec/recipes/vnstat.rb +85 -0
  64. data/lib/deprec/recipes/web/apache.rb +143 -0
  65. data/lib/deprec/recipes/web/nginx.rb +172 -0
  66. data/lib/deprec/recipes/wordpress.rb +96 -0
  67. data/lib/deprec/recipes/wpmu.rb +103 -0
  68. data/lib/deprec/recipes/xen.rb +278 -0
  69. data/lib/deprec/recipes/xentools.rb +75 -0
  70. data/lib/deprec/recipes_minus_rails.rb +61 -0
  71. data/lib/deprec/templates/aoe/aoe-init +55 -0
  72. data/lib/deprec/templates/aoe/fence_aoemask +351 -0
  73. data/lib/deprec/templates/apache/namevirtualhosts.conf +5 -0
  74. data/lib/deprec/templates/apache/ports.conf.erb +5 -0
  75. data/lib/deprec/templates/apache/status.conf.erb +17 -0
  76. data/lib/deprec/templates/ar_sendmail/logrotate.conf.erb +9 -0
  77. data/lib/deprec/templates/ar_sendmail/monit.conf.erb +5 -0
  78. data/lib/deprec/templates/chef/chef.json.erb +1 -0
  79. data/lib/deprec/templates/chef/solo.rb +2 -0
  80. data/lib/deprec/templates/collectd/collectd-init.d +153 -0
  81. data/lib/deprec/templates/collectd/collectd.conf.erb +686 -0
  82. data/lib/deprec/templates/ddclient/ddclient.conf.erb +11 -0
  83. data/lib/deprec/templates/ddclient/ddclient.erb +15 -0
  84. data/lib/deprec/templates/deprec/caprc.erb +14 -0
  85. data/lib/deprec/templates/haproxy/haproxy-init.d +120 -0
  86. data/lib/deprec/templates/haproxy/haproxy.cfg.erb +42 -0
  87. data/lib/deprec/templates/heartbeat/authkeys.erb +2 -0
  88. data/lib/deprec/templates/heartbeat/ha.cf.erb +15 -0
  89. data/lib/deprec/templates/heartbeat/haresources.erb +1 -0
  90. data/lib/deprec/templates/integrity/apache_vhost.erb +4 -0
  91. data/lib/deprec/templates/integrity/config.ru.erb +21 -0
  92. data/lib/deprec/templates/integrity/config.yml.erb +43 -0
  93. data/lib/deprec/templates/logrotate/logrotate.conf.erb +32 -0
  94. data/lib/deprec/templates/mongrel/apache_vhost.conf.erb +148 -0
  95. data/lib/deprec/templates/mongrel/logrotate.conf.erb +11 -0
  96. data/lib/deprec/templates/mongrel/mongrel_cluster-init-script +54 -0
  97. data/lib/deprec/templates/mongrel/mongrel_cluster.yml.erb +10 -0
  98. data/lib/deprec/templates/mongrel/monit.conf.erb +17 -0
  99. data/lib/deprec/templates/mongrel/nginx_vhost.conf.erb +41 -0
  100. data/lib/deprec/templates/monit/monit-init-script +104 -0
  101. data/lib/deprec/templates/monit/monitrc.erb +227 -0
  102. data/lib/deprec/templates/monit/nothing +0 -0
  103. data/lib/deprec/templates/mysql/create_databases.sql +20 -0
  104. data/lib/deprec/templates/mysql/database.yml.prod +6 -0
  105. data/lib/deprec/templates/mysql/database.yml.stage +6 -0
  106. data/lib/deprec/templates/mysql/my.cnf.erb +140 -0
  107. data/lib/deprec/templates/mysql/sphinx.conf.prod +542 -0
  108. data/lib/deprec/templates/mysql/sphinx.conf.stage +542 -0
  109. data/lib/deprec/templates/nagios/README +32 -0
  110. data/lib/deprec/templates/nagios/cgi.cfg.erb +357 -0
  111. data/lib/deprec/templates/nagios/check_linux_free_memory.pl +118 -0
  112. data/lib/deprec/templates/nagios/check_mongrel_cluster.rb +82 -0
  113. data/lib/deprec/templates/nagios/htpasswd.users +1 -0
  114. data/lib/deprec/templates/nagios/mrtg.cfg +180 -0
  115. data/lib/deprec/templates/nagios/nagios.cfg.erb +1325 -0
  116. data/lib/deprec/templates/nagios/nrpe.cfg.erb +222 -0
  117. data/lib/deprec/templates/nagios/nrpe.xinetd.erb +16 -0
  118. data/lib/deprec/templates/nagios/objects/commands.cfg.erb +265 -0
  119. data/lib/deprec/templates/nagios/objects/contacts.cfg.erb +89 -0
  120. data/lib/deprec/templates/nagios/objects/hosts.cfg.erb +114 -0
  121. data/lib/deprec/templates/nagios/objects/localhost.cfg.erb +116 -0
  122. data/lib/deprec/templates/nagios/objects/services.cfg.erb +165 -0
  123. data/lib/deprec/templates/nagios/objects/timeperiods.cfg.erb +94 -0
  124. data/lib/deprec/templates/nagios/resource.cfg.erb +34 -0
  125. data/lib/deprec/templates/network/hostname.erb +1 -0
  126. data/lib/deprec/templates/network/hosts.erb +2 -0
  127. data/lib/deprec/templates/network/interfaces.erb +18 -0
  128. data/lib/deprec/templates/network/resolv.conf.erb +6 -0
  129. data/lib/deprec/templates/nginx/logrotate.conf.erb +13 -0
  130. data/lib/deprec/templates/nginx/mime.types.erb +70 -0
  131. data/lib/deprec/templates/nginx/nginx-init-script +62 -0
  132. data/lib/deprec/templates/nginx/nginx.conf.erb +125 -0
  133. data/lib/deprec/templates/nginx/nginx.logrotate.d +12 -0
  134. data/lib/deprec/templates/nginx/nothing.conf +1 -0
  135. data/lib/deprec/templates/nginx/rails_nginx_vhost.conf.erb +41 -0
  136. data/lib/deprec/templates/ntp/ntp.conf.erb +42 -0
  137. data/lib/deprec/templates/passenger/apache_vhost.erb +29 -0
  138. data/lib/deprec/templates/passenger/apache_vhost_disabled.erb +18 -0
  139. data/lib/deprec/templates/passenger/logrotate.conf.erb +12 -0
  140. data/lib/deprec/templates/passenger/passenger.conf.erb +21 -0
  141. data/lib/deprec/templates/passenger/passenger.load.erb +3 -0
  142. data/lib/deprec/templates/postfix/aliases.erb +3 -0
  143. data/lib/deprec/templates/postfix/dynamicmaps.cf.erb +8 -0
  144. data/lib/deprec/templates/postfix/main.cf.erb +36 -0
  145. data/lib/deprec/templates/postfix/master.cf.erb +77 -0
  146. data/lib/deprec/templates/postgresql/pg_hba.conf.erb +3 -0
  147. data/lib/deprec/templates/sphinx/monit.conf.erb +5 -0
  148. data/lib/deprec/templates/ssh/ssh_config.erb +50 -0
  149. data/lib/deprec/templates/ssh/sshd_config.erb +78 -0
  150. data/lib/deprec/templates/ssl/make-ssl-cert +138 -0
  151. data/lib/deprec/templates/ssl/ssl-cert-snakeoil.key +15 -0
  152. data/lib/deprec/templates/ssl/ssl-cert-snakeoil.pem +19 -0
  153. data/lib/deprec/templates/starling/monit.conf.erb +14 -0
  154. data/lib/deprec/templates/starling/starling-init-script.erb +71 -0
  155. data/lib/deprec/templates/subversion/svn.apache.vhost.erb +43 -0
  156. data/lib/deprec/templates/syslog/syslog.conf.erb +71 -0
  157. data/lib/deprec/templates/syslog/syslogd.erb +13 -0
  158. data/lib/deprec/templates/trac/apache_vhost.conf.erb +24 -0
  159. data/lib/deprec/templates/trac/nginx_vhost.conf.erb +26 -0
  160. data/lib/deprec/templates/trac/trac.ini.erb +169 -0
  161. data/lib/deprec/templates/trac/trac_deprec.png +0 -0
  162. data/lib/deprec/templates/trac/tracd-init.erb +43 -0
  163. data/lib/deprec/templates/trac/users.htdigest.erb +0 -0
  164. data/lib/deprec/templates/vnstat/config.php +57 -0
  165. data/lib/deprec/templates/wordpress/apache2_wordpress_vhost.conf.erb +31 -0
  166. data/lib/deprec/templates/wordpress/wp-config.php.erb +31 -0
  167. data/lib/deprec/templates/wpmu/apache_vhost.conf.erb +13 -0
  168. data/lib/deprec/templates/xen/network-bridge-wrapper +3 -0
  169. data/lib/deprec/templates/xen/xend-config.sxp.erb +195 -0
  170. data/lib/deprec/templates/xen/xend-init.erb +57 -0
  171. data/lib/deprec/templates/xen/xendomains.erb +137 -0
  172. data/lib/deprec/templates/xentools/15-disable-hwclock +40 -0
  173. data/lib/deprec/templates/xentools/40-setup-networking +145 -0
  174. data/lib/deprec/templates/xentools/xen-tools.conf.erb +276 -0
  175. data/lib/deprec/templates/xentools/xm.tmpl.erb +138 -0
  176. data/lib/deprec_cmd_completion.sh +26 -0
  177. data/lib/deprec_minus_rails.rb +12 -0
  178. data/lib/vmbuilder_plugins/all.rb +20 -0
  179. data/lib/vmbuilder_plugins/apt.rb +93 -0
  180. data/lib/vmbuilder_plugins/emerge.rb +76 -0
  181. data/lib/vmbuilder_plugins/gem.rb +97 -0
  182. data/lib/vmbuilder_plugins/std.rb +203 -0
  183. metadata +245 -0
@@ -0,0 +1,169 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ [attachment]
4
+ max_size = 262144
5
+ render_unsafe_content = false
6
+
7
+ [browser]
8
+ color_scale = True
9
+ downloadable_paths = /trunk, /branches/*, /tags/*
10
+ hide_properties = svk:merge
11
+ intermediate_color =
12
+ intermediate_point =
13
+ newest_color = (255, 136, 136)
14
+ oldest_color = (136, 136, 255)
15
+ oneliner_properties = trac:summary
16
+ render_unsafe_content = false
17
+ wiki_properties = trac:description
18
+
19
+ [changeset]
20
+ max_diff_bytes = 10000000
21
+ max_diff_files = 0
22
+ wiki_format_messages = true
23
+
24
+ [header_logo]
25
+ alt = (please configure the [header_logo] section in trac.ini)
26
+ height = -1
27
+ link =
28
+ src = site/your_project_logo.png
29
+ width = -1
30
+
31
+ [inherit]
32
+ plugins_dir =
33
+ templates_dir =
34
+
35
+ [logging]
36
+ log_file = trac.log
37
+ # log_format = <inherited>
38
+ log_level = DEBUG
39
+ log_type = none
40
+
41
+ [milestone]
42
+ stats_provider = DefaultTicketGroupStatsProvider
43
+
44
+ [mimeviewer]
45
+ enscript_modes = text/x-dylan:dylan:4
46
+ enscript_path = enscript
47
+ max_preview_size = 262144
48
+ mime_map = text/x-dylan:dylan,text/x-idl:ice,text/x-ada:ads:adb
49
+ php_path = php
50
+ tab_width = 8
51
+
52
+ [notification]
53
+ admit_domains =
54
+ always_notify_owner = false
55
+ always_notify_reporter = false
56
+ always_notify_updater = true
57
+ ignore_domains =
58
+ mime_encoding = base64
59
+ smtp_always_bcc =
60
+ smtp_always_cc =
61
+ smtp_default_domain =
62
+ smtp_enabled = false
63
+ smtp_from = trac@localhost
64
+ smtp_from_name =
65
+ smtp_password =
66
+ smtp_port = 25
67
+ smtp_replyto = trac@localhost
68
+ smtp_server = localhost
69
+ smtp_subject_prefix = __default__
70
+ smtp_user =
71
+ ticket_subject_template = $prefix #$ticket.id: $summary
72
+ use_public_cc = false
73
+ use_short_addr = false
74
+ use_tls = false
75
+
76
+ [project]
77
+ admin =
78
+ descr = My example project
79
+ footer = Visit the Trac open source project at<br /><a href="http://trac.edgewall.org/">http://trac.edgewall.org/</a>
80
+ icon = common/trac.ico
81
+ name = mikehome
82
+ url =
83
+
84
+ [query]
85
+ default_anonymous_query = status!=closed&cc~=$USER
86
+ default_query = status!=closed&owner=$USER
87
+ items_per_page = 100
88
+
89
+ [report]
90
+ items_per_page = 100
91
+ items_per_page_rss = 0
92
+
93
+ [revisionlog]
94
+ default_log_limit = 100
95
+
96
+ [roadmap]
97
+ stats_provider = DefaultTicketGroupStatsProvider
98
+
99
+ [search]
100
+ min_query_length = 3
101
+
102
+ [svn]
103
+ branches = trunk,branches/*
104
+ tags = tags/*
105
+
106
+ [ticket]
107
+ default_component =
108
+ default_milestone =
109
+ default_priority = major
110
+ default_resolution = fixed
111
+ default_type = defect
112
+ default_version =
113
+ max_description_size = 262144
114
+ preserve_newlines = default
115
+ restrict_owner = false
116
+ workflow = ConfigurableTicketWorkflow
117
+
118
+ [ticket-workflow]
119
+ accept = new,assigned,accepted,reopened -> accepted
120
+ accept.operations = set_owner_to_self
121
+ accept.permissions = TICKET_MODIFY
122
+ leave = * -> *
123
+ leave.default = 1
124
+ leave.operations = leave_status
125
+ reassign = new,assigned,accepted,reopened -> assigned
126
+ reassign.operations = set_owner
127
+ reassign.permissions = TICKET_MODIFY
128
+ reopen = closed -> reopened
129
+ reopen.operations = del_resolution
130
+ reopen.permissions = TICKET_CREATE
131
+ resolve = new,assigned,accepted,reopened -> closed
132
+ resolve.operations = set_resolution
133
+ resolve.permissions = TICKET_MODIFY
134
+
135
+ [timeline]
136
+ abbreviated_messages = true
137
+ changeset_collapse_events = false
138
+ changeset_long_messages = false
139
+ changeset_show_files = 0
140
+ default_daysback = 30
141
+ max_daysback = 90
142
+ newticket_formatter = oneliner
143
+ ticket_show_details = false
144
+
145
+ [trac]
146
+ authz_file =
147
+ authz_module_name =
148
+ auto_reload = False
149
+ base_url =
150
+ check_auth_ip = true
151
+ database = sqlite:db/trac.db
152
+ default_charset = iso-8859-15
153
+ htdocs_location =
154
+ ignore_auth_case = false
155
+ mainnav = wiki,timeline,roadmap,browser,tickets,newticket,search
156
+ metanav = login,logout,prefs,help,about
157
+ permission_policies = DefaultPermissionPolicy, LegacyAttachmentPolicy
158
+ permission_store = DefaultPermissionStore
159
+ repository_dir = /var/www/apps/mikehome/repos
160
+ repository_type = svn
161
+ show_email_addresses = false
162
+ timeout = 20
163
+ use_base_url_for_redirect = False
164
+
165
+ [wiki]
166
+ ignore_missing_pages = false
167
+ render_unsafe_content = false
168
+ split_page_names = false
169
+
@@ -0,0 +1,43 @@
1
+ #!/bin/bash
2
+ #
3
+ # Start tracd for AGR project
4
+ #
5
+ # Copy to /etc/init.d and enable with:
6
+ # sudo update-rc.d tracd-agr.sh defaults
7
+
8
+ tracd_cmd=<%= tracd_cmd %>
9
+ trac_port=<%= tracd_port %>
10
+ trac_pidfile=<%= tracd_pidfile %>
11
+ trac_parent_dir=<%= tracd_parent_dir %>
12
+
13
+ function usage
14
+ {
15
+ echo "
16
+ Usage: $0 {start|stop}
17
+ "
18
+ exit 1
19
+ }
20
+
21
+ case "$1" in
22
+ start)
23
+ echo "Starting tracd"
24
+ for dir in `ls $trac_parent_dir`; do
25
+ project="`basename $dir`"
26
+ passwords="$trac_parent_dir/${dir}/conf/users.htdigest"
27
+ auth_string="$auth_string --auth=${project},${passwords},${project}"
28
+ done
29
+ cmd="$tracd_cmd $auth_string --env-parent-dir=$trac_parent_dir \
30
+ --port=$trac_port --pidfile=$trac_pidfile --daemonize"
31
+
32
+ $cmd
33
+ ;;
34
+
35
+ stop)
36
+ echo "Stopping tracd"
37
+ kill `cat $trac_pidfile` >/dev/null 2>&1
38
+ rm -f $trac_pidfile
39
+ ;;
40
+
41
+ *)
42
+ usage
43
+ esac
File without changes
@@ -0,0 +1,57 @@
1
+ <?php
2
+ //
3
+ // vnStat PHP frontend 1.3 (c)2006-2007 Bjorge Dijkstra (bjd@jooz.net)
4
+ //
5
+ // This program is free software; you can redistribute it and/or modify
6
+ // it under the terms of the GNU General Public License as published by
7
+ // the Free Software Foundation; either version 2 of the License, or
8
+ // (at your option) any later version.
9
+ //
10
+ // This program is distributed in the hope that it will be useful,
11
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ // GNU General Public License for more details.
14
+ //
15
+ // You should have received a copy of the GNU General Public License
16
+ // along with this program; if not, write to the Free Software
17
+ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
+ //
19
+ //
20
+ // see file COPYING or at http://www.gnu.org/licenses/gpl.html
21
+ // for more information.
22
+ //
23
+
24
+ //
25
+ // configuration parameters
26
+ //
27
+ // edit these to reflect your particular situation
28
+ //
29
+
30
+ // list of network interfaces monitored by vnStat
31
+ $iface_list = array('eth0', 'eth1', 'sixxs');
32
+
33
+ //
34
+ // optional names for interfaces
35
+ // if there's no name set for an interface then the interface identifier
36
+ // will be displayed instead
37
+ //
38
+ $iface_title['eth0'] = 'Internal';
39
+ $iface_title['eth1'] = 'Internet';
40
+ $iface_title['sixxs'] = 'SixXS IPv6';
41
+
42
+ //
43
+ // There are two possible sources for vnstat data. If the $vnstat_bin
44
+ // variable is set then vnstat is called directly from the PHP script
45
+ // to get the interface data.
46
+ //
47
+ // The other option is to periodically dump the vnstat interface data to
48
+ // a file (e.g. by a cronjob). In that case the $vnstat_bin variable
49
+ // must be cleared and set $data_dir to the location where the dumps
50
+ // are stored. Dumps must be named 'vnstat_dump_$iface'.
51
+ //
52
+ // You can generate vnstat dumps with the command:
53
+ // vnstat --dumpdb -i $iface > /path/to/data_dir/vnstat_dump_$iface
54
+ //
55
+ $vnstat_bin = '/usr/bin/vmstat';
56
+ $data_dir = './dumps';
57
+ ?>
@@ -0,0 +1,31 @@
1
+ <VirtualHost *:80>
2
+ ServerName <%= wordpress_domain %>
3
+ DocumentRoot <%= "#{wordpress_install_dir}" %>
4
+
5
+ <Directory <%= "#{wordpress_install_dir}" %>>
6
+ DirectoryIndex index.html index.htm index.php
7
+ Options FollowSymLinks
8
+ AllowOverride None
9
+ Order allow,deny
10
+ Allow from all
11
+ </Directory>
12
+
13
+ RewriteEngine On
14
+
15
+ # Prevent access to .svn directories
16
+ RewriteRule ^(.*/)?\.svn/ - [F,L]
17
+ ErrorDocument 403 "Access Forbidden"
18
+
19
+ # Prevent access to .git directories
20
+ RewriteRule ^(.*/)?\.git/ - [F,L]
21
+ ErrorDocument 403 "Access Forbidden"
22
+
23
+ # Deflate
24
+ AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript
25
+ BrowserMatch ^Mozilla/4 gzip-only-text/html
26
+ BrowserMatch ^Mozilla/4\.0[678] no-gzip
27
+ BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
28
+
29
+ ErrorLog logs/<%= wordpress_domain %>-error_log
30
+ CustomLog logs/<%= wordpress_domain %>-access_log combined
31
+ </VirtualHost>
@@ -0,0 +1,31 @@
1
+ <?php
2
+ // ** MySQL settings ** //
3
+ define('DB_NAME', '<%= db_name %>'); // The name of the database
4
+ define('DB_USER', '<%= db_user %>'); // Your MySQL username
5
+ define('DB_PASSWORD', '<%= db_pass %>'); // ...and password
6
+ define('DB_HOST', '<%= db_host %>'); // 99% chance you won't need to change this value
7
+ define('DB_CHARSET', '<%= db_charset %>');
8
+ define('DB_COLLATE', '<%= db_collate %>');
9
+
10
+ // Change each KEY to a different unique phrase. You won't have to remember the phrases later,
11
+ // so make them long and complicated. You can visit http://api.wordpress.org/secret-key/1.1/
12
+ // to get keys generated for you, or just make something up. Each key should have a different phrase.
13
+ define('AUTH_KEY', '<%= auth_key %>'); // Change this to a unique phrase.
14
+ define('SECURE_AUTH_KEY', '<%= secure_auth_key %>'); // Change this to a unique phrase.
15
+ define('LOGGED_IN_KEY', '<%= logged_in_key %>'); // Change this to a unique phrase.
16
+
17
+ // You can have multiple installations in one database if you give each a unique prefix
18
+ $table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
19
+
20
+ // Change this to localize WordPress. A corresponding MO file for the
21
+ // chosen language must be installed to wp-content/languages.
22
+ // For example, install de.mo to wp-content/languages and set WPLANG to 'de'
23
+ // to enable German language support.
24
+ define ('WPLANG', '');
25
+
26
+ /* That's all, stop editing! Happy blogging. */
27
+
28
+ if ( !defined('ABSPATH') )
29
+ define('ABSPATH', dirname(__FILE__) . '/');
30
+ require_once(ABSPATH . 'wp-settings.php');
31
+ ?>
@@ -0,0 +1,13 @@
1
+ NameVirtualHost *
2
+ <VirtualHost *>
3
+ ServerName <%= wpmu_domain %>
4
+ DocumentRoot <%= wpmu_root %>
5
+ <Directory <%= wpmu_root %>>
6
+ Options Indexes FollowSymLinks MultiViews
7
+ AllowOverride FileInfo Options
8
+ Order allow,deny
9
+ allow from all
10
+ </Directory>
11
+ ErrorLog <%= apache_log_dir %>/wpmu-error.log
12
+ CustomLog <%= apache_log_dir %>/wpmu-access.log combined
13
+ </VirtualHost>
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+ /etc/xen/scripts/network-bridge $1 netdev=eth0 bridge=xenbr0 vifnum=0 antispoof=no
3
+ /etc/xen/scripts/network-bridge $1 netdev=eth1 bridge=xenbr1 vifnum=1 antispoof=no
@@ -0,0 +1,195 @@
1
+ # -*- sh -*-
2
+
3
+ #
4
+ # Xend configuration file.
5
+ #
6
+
7
+ # This example configuration is appropriate for an installation that
8
+ # utilizes a bridged network configuration. Access to xend via http
9
+ # is disabled.
10
+
11
+ # Commented out entries show the default for that entry, unless otherwise
12
+ # specified.
13
+
14
+ #(logfile /var/log/xen/xend.log)
15
+ #(loglevel DEBUG)
16
+
17
+
18
+ # The Xen-API server configuration. (Please note that this server is
19
+ # available as an UNSUPPORTED PREVIEW in Xen 3.0.4, and should not be relied
20
+ # upon).
21
+ #
22
+ # This value configures the ports, interfaces, and access controls for the
23
+ # Xen-API server. Each entry in the list starts with either unix, a port
24
+ # number, or an address:port pair. If this is "unix", then a UDP socket is
25
+ # opened, and this entry applies to that. If it is a port, then Xend will
26
+ # listen on all interfaces on that TCP port, and if it is an address:port
27
+ # pair, then Xend will listen on the specified port, using the interface with
28
+ # the specified address.
29
+ #
30
+ # The subsequent string configures the user-based access control for the
31
+ # listener in question. This can be one of "none" or "pam", indicating either
32
+ # that users should be allowed access unconditionally, or that the local
33
+ # Pluggable Authentication Modules configuration should be used. If this
34
+ # string is missing or empty, then "pam" is used.
35
+ #
36
+ # The final string gives the host-based access control for that listener. If
37
+ # this is missing or empty, then all connections are accepted. Otherwise,
38
+ # this should be a space-separated sequence of regular expressions; any host
39
+ # with a fully-qualified domain name or an IP address that matches one of
40
+ # these regular expressions will be accepted.
41
+ #
42
+ # Example: listen on TCP port 9363 on all interfaces, accepting connections
43
+ # only from machines in example.com or localhost, and allow access through
44
+ # the unix domain socket unconditionally:
45
+ #
46
+ # (xen-api-server ((9363 pam '^localhost$ example\\.com$')
47
+ # (unix none)))
48
+ #
49
+ # Optionally, the TCP Xen-API server can use SSL by specifying the private
50
+ # key and certificate location:
51
+ #
52
+ # (9367 pam '' /etc/xen/xen-api.key /etc/xen/xen-api.crt)
53
+ #
54
+ # Default:
55
+ # (xen-api-server ((unix)))
56
+
57
+
58
+ #(xend-http-server no)
59
+ #(xend-unix-server no)
60
+ #(xend-tcp-xmlrpc-server no)
61
+ #(xend-unix-xmlrpc-server yes)
62
+ #(xend-relocation-server no)
63
+ (xend-relocation-server no)
64
+
65
+ #(xend-unix-path /var/lib/xend/xend-socket)
66
+
67
+
68
+ # Address and port xend should use for the legacy TCP XMLRPC interface,
69
+ # if xen-tcp-xmlrpc-server is set.
70
+ #(xen-tcp-xmlrpc-server-address 'localhost')
71
+ #(xen-tcp-xmlrpc-server-port 8006)
72
+
73
+ # SSL key and certificate to use for the legacy TCP XMLRPC interface.
74
+ # Setting these will mean that this port serves only SSL connections as
75
+ # opposed to plaintext ones.
76
+ #(xend-tcp-xmlrpc-server-ssl-key-file /etc/xen/xmlrpc.key)
77
+ #(xend-tcp-xmlrpc-server-ssl-cert-file /etc/xen/xmlrpc.crt)
78
+
79
+
80
+ # Port xend should use for the HTTP interface, if xend-http-server is set.
81
+ #(xend-port 8000)
82
+
83
+ # Port xend should use for the relocation interface, if xend-relocation-server
84
+ # is set.
85
+ #(xend-relocation-port 8002)
86
+
87
+ # Address xend should listen on for HTTP connections, if xend-http-server is
88
+ # set.
89
+ # Specifying 'localhost' prevents remote connections.
90
+ # Specifying the empty string '' (the default) allows all connections.
91
+ #(xend-address '')
92
+ #(xend-address localhost)
93
+
94
+ # Address xend should listen on for relocation-socket connections, if
95
+ # xend-relocation-server is set.
96
+ # Meaning and default as for xend-address above.
97
+ #(xend-relocation-address '')
98
+
99
+ # The hosts allowed to talk to the relocation port. If this is empty (the
100
+ # default), then all connections are allowed (assuming that the connection
101
+ # arrives on a port and interface on which we are listening; see
102
+ # xend-relocation-port and xend-relocation-address above). Otherwise, this
103
+ # should be a space-separated sequence of regular expressions. Any host with
104
+ # a fully-qualified domain name or an IP address that matches one of these
105
+ # regular expressions will be accepted.
106
+ #
107
+ # For example:
108
+ # (xend-relocation-hosts-allow '^localhost$ ^.*\\.example\\.org$')
109
+ #
110
+ #(xend-relocation-hosts-allow '')
111
+ (xend-relocation-hosts-allow '^localhost$ ^localhost\\.localdomain$')
112
+
113
+ # The limit (in kilobytes) on the size of the console buffer
114
+ #(console-limit 1024)
115
+
116
+ ##
117
+ # To bridge network traffic, like this:
118
+ #
119
+ # dom0: fake eth0 -> vif0.0 -+
120
+ # |
121
+ # bridge -> real eth0 -> the network
122
+ # |
123
+ # domU: fake eth0 -> vifN.0 -+
124
+ #
125
+ # use
126
+ #
127
+ (network-script network-bridge-wrapper)
128
+ #
129
+ # Your default ethernet device is used as the outgoing interface, by default.
130
+ # To use a different one (e.g. eth1) use
131
+ #
132
+ # (network-script 'network-bridge netdev=eth1')
133
+ #
134
+ # The bridge is named xenbr0, by default. To rename the bridge, use
135
+ #
136
+ # (network-script 'network-bridge bridge=<name>')
137
+ #
138
+ # It is possible to use the network-bridge script in more complicated
139
+ # scenarios, such as having two outgoing interfaces, with two bridges, and
140
+ # two fake interfaces per guest domain. To do things like this, write
141
+ # yourself a wrapper script, and call network-bridge from it, as appropriate.
142
+ #
143
+ # (network-script network-dummy)
144
+
145
+ # The script used to control virtual interfaces. This can be overridden on a
146
+ # per-vif basis when creating a domain or a configuring a new vif. The
147
+ # vif-bridge script is designed for use with the network-bridge script, or
148
+ # similar configurations.
149
+ #
150
+ # If you have overridden the bridge name using
151
+ # (network-script 'network-bridge bridge=<name>') then you may wish to do the
152
+ # same here. The bridge name can also be set when creating a domain or
153
+ # configuring a new vif, but a value specified here would act as a default.
154
+ #
155
+ # If you are using only one bridge, the vif-bridge script will discover that,
156
+ # so there is no need to specify it explicitly.
157
+ #
158
+ (vif-script vif-bridge)
159
+
160
+
161
+ ## Use the following if network traffic is routed, as an alternative to the
162
+ # settings for bridged networking given above.
163
+ #(network-script network-route)
164
+ #(vif-script vif-route)
165
+
166
+
167
+ ## Use the following if network traffic is routed with NAT, as an alternative
168
+ # to the settings for bridged networking given above.
169
+ #(network-script network-nat)
170
+ #(vif-script vif-nat)
171
+
172
+
173
+ # Dom0 will balloon out when needed to free memory for domU.
174
+ # dom0-min-mem is the lowest memory level (in MB) dom0 will get down to.
175
+ # If dom0-min-mem=0, dom0 will never balloon out.
176
+ (dom0-min-mem 196)
177
+
178
+ # In SMP system, dom0 will use dom0-cpus # of CPUS
179
+ # If dom0-cpus = 0, dom0 will take all cpus available
180
+ (dom0-cpus 0)
181
+
182
+ # Whether to enable core-dumps when domains crash.
183
+ #(enable-dump no)
184
+
185
+ # The tool used for initiating virtual TPM migration
186
+ #(external-migration-tool '')
187
+
188
+ # The interface for VNC servers to listen on. Defaults
189
+ # to 127.0.0.1 To restore old 'listen everywhere' behaviour
190
+ # set this to 0.0.0.0
191
+ #(vnc-listen '127.0.0.1')
192
+
193
+ # The default password for VNC console on HVM domain.
194
+ # Empty string is no authentication.
195
+ (vncpasswd '')