fairchild-poolparty 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/README.txt +1 -3
  2. data/VERSION.yml +1 -1
  3. data/bin/cloud-configure +0 -2
  4. data/bin/cloud-show +2 -2
  5. data/lib/poolparty/base_packages/haproxy.rb +9 -4
  6. data/lib/poolparty/base_packages/poolparty.rb +2 -0
  7. data/lib/poolparty/base_packages/tokyo_tyrant.rb +23 -0
  8. data/lib/poolparty/core/string.rb +14 -0
  9. data/lib/poolparty/dependency_resolver/chef_resolver.rb +12 -5
  10. data/lib/poolparty/helpers/binary.rb +5 -2
  11. data/lib/poolparty/modules/cloud_dsl.rb +10 -0
  12. data/lib/poolparty/modules/definable_resource.rb +1 -4
  13. data/lib/poolparty/monitors/neighborhood_monitor.rb +3 -4
  14. data/lib/poolparty/net/remoter/interactive.rb +1 -0
  15. data/lib/poolparty/plugins/chef.rb +5 -0
  16. data/lib/poolparty/plugins/deploydirectory.rb +13 -22
  17. data/lib/poolparty/plugins/git.rb +8 -6
  18. data/lib/poolparty/plugins/svn.rb +56 -39
  19. data/lib/poolparty/poolparty/cloud.rb +23 -4
  20. data/lib/poolparty/poolparty/plugin_model.rb +1 -1
  21. data/lib/poolparty/poolparty/pool.rb +1 -1
  22. data/lib/poolparty/poolparty/poolparty_base_class.rb +2 -0
  23. data/lib/poolparty/provision/dr_configure.rb +6 -5
  24. data/test/poolparty/modules/cloud_dsl_test.rb +33 -0
  25. data/test/test_helper.rb +1 -1
  26. data/vendor/chef/apache2/README.rdoc +59 -0
  27. data/vendor/chef/apache2/attributes/apache.rb +72 -0
  28. data/vendor/chef/apache2/definitions/apache_module.rb +36 -0
  29. data/vendor/chef/apache2/definitions/apache_site.rb +36 -0
  30. data/vendor/chef/apache2/definitions/web_app.rb +45 -0
  31. data/vendor/chef/apache2/files/default/apache2_module_conf_generate.pl +41 -0
  32. data/vendor/chef/apache2/recipes/default.rb +132 -0
  33. data/vendor/chef/apache2/recipes/mod_alias.rb +20 -0
  34. data/vendor/chef/apache2/recipes/mod_auth_basic.rb +20 -0
  35. data/vendor/chef/apache2/recipes/mod_auth_digest.rb +20 -0
  36. data/vendor/chef/apache2/recipes/mod_authn_file.rb +20 -0
  37. data/vendor/chef/apache2/recipes/mod_authnz_ldap.rb +20 -0
  38. data/vendor/chef/apache2/recipes/mod_authz_default.rb +20 -0
  39. data/vendor/chef/apache2/recipes/mod_authz_groupfile.rb +20 -0
  40. data/vendor/chef/apache2/recipes/mod_authz_host.rb +20 -0
  41. data/vendor/chef/apache2/recipes/mod_authz_user.rb +20 -0
  42. data/vendor/chef/apache2/recipes/mod_autoindex.rb +20 -0
  43. data/vendor/chef/apache2/recipes/mod_cgi.rb +20 -0
  44. data/vendor/chef/apache2/recipes/mod_dav.rb +20 -0
  45. data/vendor/chef/apache2/recipes/mod_dav_svn.rb +20 -0
  46. data/vendor/chef/apache2/recipes/mod_deflate.rb +20 -0
  47. data/vendor/chef/apache2/recipes/mod_dir.rb +20 -0
  48. data/vendor/chef/apache2/recipes/mod_env.rb +20 -0
  49. data/vendor/chef/apache2/recipes/mod_expires.rb +20 -0
  50. data/vendor/chef/apache2/recipes/mod_fcgid.rb +35 -0
  51. data/vendor/chef/apache2/recipes/mod_headers.rb +20 -0
  52. data/vendor/chef/apache2/recipes/mod_ldap.rb +20 -0
  53. data/vendor/chef/apache2/recipes/mod_log_config.rb +20 -0
  54. data/vendor/chef/apache2/recipes/mod_mime.rb +20 -0
  55. data/vendor/chef/apache2/recipes/mod_negotiation.rb +20 -0
  56. data/vendor/chef/apache2/recipes/mod_php5.rb +27 -0
  57. data/vendor/chef/apache2/recipes/mod_proxy.rb +20 -0
  58. data/vendor/chef/apache2/recipes/mod_proxy_http.rb +20 -0
  59. data/vendor/chef/apache2/recipes/mod_python.rb +22 -0
  60. data/vendor/chef/apache2/recipes/mod_rewrite.rb +20 -0
  61. data/vendor/chef/apache2/recipes/mod_setenvif.rb +20 -0
  62. data/vendor/chef/apache2/recipes/mod_ssl.rb +20 -0
  63. data/vendor/chef/apache2/recipes/mod_status.rb +20 -0
  64. data/vendor/chef/apache2/templates/default/a2dismod.erb +22 -0
  65. data/vendor/chef/apache2/templates/default/a2dissite.erb +29 -0
  66. data/vendor/chef/apache2/templates/default/a2enmod.erb +37 -0
  67. data/vendor/chef/apache2/templates/default/a2ensite.erb +38 -0
  68. data/vendor/chef/apache2/templates/default/apache2.conf.erb +630 -0
  69. data/vendor/chef/apache2/templates/default/default-site.erb +45 -0
  70. data/vendor/chef/apache2/templates/default/port_apache.erb +2 -0
  71. data/vendor/chef/apache2/templates/default/ports.conf.erb +6 -0
  72. data/vendor/chef/apache2/templates/default/web_app.conf.erb +43 -0
  73. data/vendor/gems/dslify/dslify.gemspec +2 -2
  74. data/vendor/gems/dslify/lib/dslify/version.rb +1 -1
  75. data/vendor/gems/suitcase/VERSION.yml +1 -1
  76. data/vendor/gems/suitcase/lib/suitcase/zipper.rb +23 -7
  77. data/vendor/gems/suitcase/suitcase.gemspec +5 -25
  78. data/vendor/gems/suitcase/test/suitcase_test.rb +13 -0
  79. metadata +61 -2
@@ -0,0 +1,630 @@
1
+ #
2
+ # Generated by Chef
3
+ #
4
+ # Based on the Ubuntu apache2.conf
5
+
6
+ ServerRoot "<%= @node[:apache][:dir] %>"
7
+
8
+ #
9
+ # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
10
+ #
11
+ <% if @node[:platform] == "debian" || @node[:platform] == "ubuntu" -%>
12
+ LockFile /var/lock/apache2/accept.lock
13
+ <% else %>
14
+ LockFile logs/accept.lock
15
+ <% end -%>
16
+
17
+ #
18
+ # PidFile: The file in which the server should record its process
19
+ # identification number when it starts.
20
+ #
21
+ <% if @node[:platform] == "debian" || @node[:platform] == "ubuntu" -%>
22
+ PidFile /var/run/apache2.pid
23
+ <% else -%>
24
+ PidFile logs/httpd.pid
25
+ <% end -%>
26
+
27
+ #
28
+ # Timeout: The number of seconds before receives and sends time out.
29
+ #
30
+ Timeout <%= @node[:apache][:timeout] %>
31
+
32
+ #
33
+ # KeepAlive: Whether or not to allow persistent connections (more than
34
+ # one request per connection). Set to "Off" to deactivate.
35
+ #
36
+ KeepAlive <%= @node[:apache][:keepalive] %>
37
+
38
+ #
39
+ # MaxKeepAliveRequests: The maximum number of requests to allow
40
+ # during a persistent connection. Set to 0 to allow an unlimited amount.
41
+ # We recommend you leave this number high, for maximum performance.
42
+ #
43
+ MaxKeepAliveRequests <%= @node[:apache][:keepaliverequests] %>
44
+
45
+ #
46
+ # KeepAliveTimeout: Number of seconds to wait for the next request from the
47
+ # same client on the same connection.
48
+ #
49
+ KeepAliveTimeout <%= @node[:apache][:keepalivetimeout] %>
50
+
51
+ ##
52
+ ## Server-Pool Size Regulation (MPM specific)
53
+ ##
54
+
55
+ # prefork MPM
56
+ # StartServers: number of server processes to start
57
+ # MinSpareServers: minimum number of server processes which are kept spare
58
+ # MaxSpareServers: maximum number of server processes which are kept spare
59
+ # MaxClients: maximum number of server processes allowed to start
60
+ # MaxRequestsPerChild: maximum number of requests a server process serves
61
+ <IfModule mpm_prefork_module>
62
+ StartServers <%= @node[:apache][:prefork][:startservers] %>
63
+ MinSpareServers <%= @node[:apache][:prefork][:minspareservers] %>
64
+ MaxSpareServers <%= @node[:apache][:prefork][:maxspareservers] %>
65
+ MaxClients <%= @node[:apache][:prefork][:maxclients] %>
66
+ MaxRequestsPerChild <%= @node[:apache][:prefork][:maxrequestsperchild] %>
67
+ </IfModule>
68
+
69
+ # worker MPM
70
+ # StartServers: initial number of server processes to start
71
+ # MaxClients: maximum number of simultaneous client connections
72
+ # MinSpareThreads: minimum number of worker threads which are kept spare
73
+ # MaxSpareThreads: maximum number of worker threads which are kept spare
74
+ # ThreadsPerChild: constant number of worker threads in each server process
75
+ # MaxRequestsPerChild: maximum number of requests a server process serves
76
+ <IfModule mpm_worker_module>
77
+ StartServers <%= @node[:apache][:worker][:startservers] %>
78
+ MaxClients <%= @node[:apache][:worker][:maxclients] %>
79
+ MinSpareThreads <%= @node[:apache][:worker][:minsparethreads] %>
80
+ MaxSpareThreads <%= @node[:apache][:worker][:maxsparethreads] %>
81
+ ThreadsPerChild <%= @node[:apache][:worker][:threadsperchild] %>
82
+ MaxRequestsPerChild <%= @node[:apache][:worker][:maxrequestsperchild] %>
83
+ </IfModule>
84
+
85
+ User <%= @node[:apache][:user] %>
86
+ Group <%= @node[:apache][:user] %>
87
+
88
+ #
89
+ # AccessFileName: The name of the file to look for in each directory
90
+ # for additional configuration directives. See also the AllowOverride
91
+ # directive.
92
+ #
93
+
94
+ AccessFileName .htaccess
95
+
96
+ #
97
+ # The following lines prevent .htaccess and .htpasswd files from being
98
+ # viewed by Web clients.
99
+ #
100
+ <Files ~ "^\.ht">
101
+ Order allow,deny
102
+ Deny from all
103
+ </Files>
104
+
105
+ TypesConfig /etc/mime.types
106
+
107
+ #
108
+ # DefaultType is the default MIME type the server will use for a document
109
+ # if it cannot otherwise determine one, such as from filename extensions.
110
+ # If your server contains mostly text or HTML documents, "text/plain" is
111
+ # a good value. If most of your content is binary, such as applications
112
+ # or images, you may want to use "application/octet-stream" instead to
113
+ # keep browsers from trying to display binary files as though they are
114
+ # text.
115
+ #
116
+ DefaultType text/plain
117
+
118
+
119
+ #
120
+ # HostnameLookups: Log the names of clients or just their IP addresses
121
+ # e.g., www.apache.org (on) or 204.62.129.132 (off).
122
+ # The default is off because it'd be overall better for the net if people
123
+ # had to knowingly turn this feature on, since enabling it means that
124
+ # each client request will result in AT LEAST one lookup request to the
125
+ # nameserver.
126
+ #
127
+ HostnameLookups Off
128
+
129
+ # ErrorLog: The location of the error log file.
130
+ # If you do not specify an ErrorLog directive within a <VirtualHost>
131
+ # container, error messages relating to that virtual host will be
132
+ # logged here. If you *do* define an error logfile for a <VirtualHost>
133
+ # container, that host's errors will be logged there and not here.
134
+ #
135
+ ErrorLog <%= @node[:apache][:log_dir] %>/error.log
136
+
137
+ #
138
+ # LogLevel: Control the number of messages logged to the error_log.
139
+ # Possible values include: debug, info, notice, warn, error, crit,
140
+ # alert, emerg.
141
+ #
142
+ LogLevel warn
143
+
144
+ # Include module configuration:
145
+ Include <%= @node[:apache][:dir] %>/mods-enabled/*.load
146
+ Include <%= @node[:apache][:dir] %>/mods-enabled/*.conf
147
+
148
+ # Include ports listing
149
+ Include <%= @node[:apache][:dir] %>/ports.conf
150
+
151
+ # Include generic snippets of statements
152
+ Include <%= @node[:apache][:dir] %>/conf.d/*.conf
153
+
154
+ #
155
+ # The following directives define some format nicknames for use with
156
+ # a CustomLog directive (see below).
157
+ #
158
+ LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
159
+ LogFormat "%h %l %u %t \"%r\" %>s %b" common
160
+ LogFormat "%{Referer}i -> %U" referer
161
+ LogFormat "%{User-agent}i" agent
162
+
163
+ #
164
+ # ServerTokens
165
+ # This directive configures what you return as the Server HTTP response
166
+ # Header. The default is 'Full' which sends information about the OS-Type
167
+ # and compiled in modules.
168
+ # Set to one of: Full | OS | Minor | Minimal | Major | Prod
169
+ # where Full conveys the most information, and Prod the least.
170
+ #
171
+ ServerTokens Full
172
+
173
+ #
174
+ # Optionally add a line containing the server version and virtual host
175
+ # name to server-generated pages (internal error documents, FTP directory
176
+ # listings, mod_status and mod_info output etc., but not CGI generated
177
+ # documents or custom error documents).
178
+ # Set to "EMail" to also include a mailto: link to the ServerAdmin.
179
+ # Set to one of: On | Off | EMail
180
+ #
181
+ ServerSignature On
182
+
183
+ <IfModule alias_module>
184
+ #
185
+ # Aliases: Add here as many aliases as you need (with no limit). The format is
186
+ # Alias fakename realname
187
+ #
188
+ # Note that if you include a trailing / on fakename then the server will
189
+ # require it to be present in the URL. So "/icons" isn't aliased in this
190
+ # example, only "/icons/". If the fakename is slash-terminated, then the
191
+ # realname must also be slash terminated, and if the fakename omits the
192
+ # trailing slash, the realname must also omit it.
193
+ #
194
+ # We include the /icons/ alias for FancyIndexed directory listings. If
195
+ # you do not use FancyIndexing, you may comment this out.
196
+ Alias /icons/ "<%= @node[:apache][:icondir] %>"
197
+
198
+ <Directory "<%= @node[:apache][:icondir] %>">
199
+ Options Indexes MultiViews
200
+ AllowOverride None
201
+ Order allow,deny
202
+ Allow from all
203
+ </Directory>
204
+
205
+ </IfModule>
206
+
207
+ #
208
+ # Directives controlling the display of server-generated directory listings.
209
+ #
210
+ <IfModule mod_autoindex.c>
211
+
212
+ #
213
+ # IndexOptions: Controls the appearance of server-generated directory
214
+ # listings.
215
+ #
216
+ IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*
217
+
218
+ #
219
+ # AddIcon* directives tell the server which icon to show for different
220
+ # files or filename extensions. These are only displayed for
221
+ # FancyIndexed directories.
222
+ #
223
+ AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
224
+
225
+ AddIconByType (TXT,/icons/text.gif) text/*
226
+ AddIconByType (IMG,/icons/image2.gif) image/*
227
+ AddIconByType (SND,/icons/sound2.gif) audio/*
228
+ AddIconByType (VID,/icons/movie.gif) video/*
229
+
230
+ AddIcon /icons/binary.gif .bin .exe
231
+ AddIcon /icons/binhex.gif .hqx
232
+ AddIcon /icons/tar.gif .tar
233
+ AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
234
+ AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
235
+ AddIcon /icons/a.gif .ps .ai .eps
236
+ AddIcon /icons/layout.gif .html .shtml .htm .pdf
237
+ AddIcon /icons/text.gif .txt
238
+ AddIcon /icons/c.gif .c
239
+ AddIcon /icons/p.gif .pl .py
240
+ AddIcon /icons/f.gif .for
241
+ AddIcon /icons/dvi.gif .dvi
242
+ AddIcon /icons/uuencoded.gif .uu
243
+ AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
244
+ AddIcon /icons/tex.gif .tex
245
+ AddIcon /icons/bomb.gif core
246
+
247
+ AddIcon /icons/back.gif ..
248
+ AddIcon /icons/hand.right.gif README
249
+ AddIcon /icons/folder.gif ^^DIRECTORY^^
250
+ AddIcon /icons/blank.gif ^^BLANKICON^^
251
+
252
+ #
253
+ # DefaultIcon is which icon to show for files which do not have an icon
254
+ # explicitly set.
255
+ #
256
+ DefaultIcon /icons/unknown.gif
257
+
258
+ #
259
+ # AddDescription allows you to place a short description after a file in
260
+ # server-generated indexes. These are only displayed for FancyIndexed
261
+ # directories.
262
+ # Format: AddDescription "description" filename
263
+ #
264
+ #AddDescription "GZIP compressed document" .gz
265
+ #AddDescription "tar archive" .tar
266
+ #AddDescription "GZIP compressed tar archive" .tgz
267
+
268
+ #
269
+ # ReadmeName is the name of the README file the server will look for by
270
+ # default, and append to directory listings.
271
+ #
272
+ # HeaderName is the name of a file which should be prepended to
273
+ # directory indexes.
274
+ ReadmeName README.html
275
+ HeaderName HEADER.html
276
+
277
+ #
278
+ # IndexIgnore is a set of filenames which directory indexing should ignore
279
+ # and not include in the listing. Shell-style wildcarding is permitted.
280
+ #
281
+ IndexIgnore .??* *~ *# RCS CVS *,v *,t
282
+ </IfModule>
283
+
284
+ <IfModule mod_mime.c>
285
+
286
+ #
287
+ # AddType allows you to add to or override the MIME configuration
288
+ # file mime.types for specific file types.
289
+ #
290
+ #AddType application/x-gzip .tgz
291
+ #
292
+ # AddEncoding allows you to have certain browsers uncompress
293
+ # information on the fly. Note: Not all browsers support this.
294
+ # Despite the name similarity, the following Add* directives have
295
+ # nothing to do with the FancyIndexing customization directives above.
296
+ #
297
+ #AddEncoding x-compress .Z
298
+ #AddEncoding x-gzip .gz .tgz
299
+ #
300
+ # If the AddEncoding directives above are commented-out, then you
301
+ # probably should define those extensions to indicate media types:
302
+ #
303
+ AddType application/x-compress .Z
304
+ AddType application/x-gzip .gz .tgz
305
+
306
+ #
307
+ # DefaultLanguage and AddLanguage allows you to specify the language of
308
+ # a document. You can then use content negotiation to give a browser a
309
+ # file in a language the user can understand.
310
+ #
311
+ # Specify a default language. This means that all data
312
+ # going out without a specific language tag (see below) will
313
+ # be marked with this one. You probably do NOT want to set
314
+ # this unless you are sure it is correct for all cases.
315
+ #
316
+ # * It is generally better to not mark a page as
317
+ # * being a certain language than marking it with the wrong
318
+ # * language!
319
+ #
320
+ # DefaultLanguage nl
321
+ #
322
+ # Note 1: The suffix does not have to be the same as the language
323
+ # keyword --- those with documents in Polish (whose net-standard
324
+ # language code is pl) may wish to use "AddLanguage pl .po" to
325
+ # avoid the ambiguity with the common suffix for perl scripts.
326
+ #
327
+ # Note 2: The example entries below illustrate that in some cases
328
+ # the two character 'Language' abbreviation is not identical to
329
+ # the two character 'Country' code for its country,
330
+ # E.g. 'Danmark/dk' versus 'Danish/da'.
331
+ #
332
+ # Note 3: In the case of 'ltz' we violate the RFC by using a three char
333
+ # specifier. There is 'work in progress' to fix this and get
334
+ # the reference data for rfc1766 cleaned up.
335
+ #
336
+ # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
337
+ # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
338
+ # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
339
+ # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
340
+ # Norwegian (no) - Polish (pl) - Portugese (pt)
341
+ # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
342
+ # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
343
+ #
344
+ AddLanguage ca .ca
345
+ AddLanguage cs .cz .cs
346
+ AddLanguage da .dk
347
+ AddLanguage de .de
348
+ AddLanguage el .el
349
+ AddLanguage en .en
350
+ AddLanguage eo .eo
351
+ AddLanguage es .es
352
+ AddLanguage et .et
353
+ AddLanguage fr .fr
354
+ AddLanguage he .he
355
+ AddLanguage hr .hr
356
+ AddLanguage it .it
357
+ AddLanguage ja .ja
358
+ AddLanguage ko .ko
359
+ AddLanguage ltz .ltz
360
+ AddLanguage nl .nl
361
+ AddLanguage nn .nn
362
+ AddLanguage no .no
363
+ AddLanguage pl .po
364
+ AddLanguage pt .pt
365
+ AddLanguage pt-BR .pt-br
366
+ AddLanguage ru .ru
367
+ AddLanguage sv .sv
368
+ AddLanguage zh-CN .zh-cn
369
+ AddLanguage zh-TW .zh-tw
370
+ </IfModule>
371
+
372
+ <IfModule mod_negotiation.c>
373
+ #
374
+ # LanguagePriority allows you to give precedence to some languages
375
+ # in case of a tie during content negotiation.
376
+ #
377
+ # Just list the languages in decreasing order of preference. We have
378
+ # more or less alphabetized them here. You probably want to change this.
379
+ #
380
+ LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
381
+
382
+ #
383
+ # ForceLanguagePriority allows you to serve a result page rather than
384
+ # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
385
+ # [in case no accepted languages matched the available variants]
386
+ #
387
+ ForceLanguagePriority Prefer Fallback
388
+
389
+ </IfModule>
390
+
391
+ <IfModule mod_mime.c>
392
+ #
393
+ # Specify a default charset for all pages sent out. This is
394
+ # always a good idea and opens the door for future internationalisation
395
+ # of your web site, should you ever want it. Specifying it as
396
+ # a default does little harm; as the standard dictates that a page
397
+ # is in iso-8859-1 (latin1) unless specified otherwise i.e. you
398
+ # are merely stating the obvious. There are also some security
399
+ # reasons in browsers, related to javascript and URL parsing
400
+ # which encourage you to always set a default char set.
401
+ #
402
+ #AddDefaultCharset ISO-8859-1
403
+
404
+ #
405
+ # Commonly used filename extensions to character sets. You probably
406
+ # want to avoid clashes with the language extensions, unless you
407
+ # are good at carefully testing your setup after each change.
408
+ # See http://www.iana.org/assignments/character-sets for the
409
+ # official list of charset names and their respective RFCs.
410
+ #
411
+ AddCharset us-ascii .ascii .us-ascii
412
+ AddCharset ISO-8859-1 .iso8859-1 .latin1
413
+ AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
414
+ AddCharset ISO-8859-3 .iso8859-3 .latin3
415
+ AddCharset ISO-8859-4 .iso8859-4 .latin4
416
+ AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
417
+ AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
418
+ AddCharset ISO-8859-7 .iso8859-7 .grk .greek
419
+ AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
420
+ AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
421
+ AddCharset ISO-8859-10 .iso8859-10 .latin6
422
+ AddCharset ISO-8859-13 .iso8859-13
423
+ AddCharset ISO-8859-14 .iso8859-14 .latin8
424
+ AddCharset ISO-8859-15 .iso8859-15 .latin9
425
+ AddCharset ISO-8859-16 .iso8859-16 .latin10
426
+ AddCharset ISO-2022-JP .iso2022-jp .jis
427
+ AddCharset ISO-2022-KR .iso2022-kr .kis
428
+ AddCharset ISO-2022-CN .iso2022-cn .cis
429
+ AddCharset Big5 .Big5 .big5 .b5
430
+ AddCharset cn-Big5 .cn-big5
431
+ # For russian, more than one charset is used (depends on client, mostly):
432
+ AddCharset WINDOWS-1251 .cp-1251 .win-1251
433
+ AddCharset CP866 .cp866
434
+ AddCharset KOI8 .koi8
435
+ AddCharset KOI8-E .koi8-e
436
+ AddCharset KOI8-r .koi8-r .koi8-ru
437
+ AddCharset KOI8-U .koi8-u
438
+ AddCharset KOI8-ru .koi8-uk .ua
439
+ AddCharset ISO-10646-UCS-2 .ucs2
440
+ AddCharset ISO-10646-UCS-4 .ucs4
441
+ AddCharset UTF-7 .utf7
442
+ AddCharset UTF-8 .utf8
443
+ AddCharset UTF-16 .utf16
444
+ AddCharset UTF-16BE .utf16be
445
+ AddCharset UTF-16LE .utf16le
446
+ AddCharset UTF-32 .utf32
447
+ AddCharset UTF-32BE .utf32be
448
+ AddCharset UTF-32LE .utf32le
449
+ AddCharset euc-cn .euc-cn
450
+ AddCharset euc-gb .euc-gb
451
+ AddCharset euc-jp .euc-jp
452
+ AddCharset euc-kr .euc-kr
453
+ #Not sure how euc-tw got in - IANA doesn't list it???
454
+ AddCharset EUC-TW .euc-tw
455
+ AddCharset gb2312 .gb2312 .gb
456
+ AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
457
+ AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
458
+ AddCharset shift_jis .shift_jis .sjis
459
+
460
+ #
461
+ # AddHandler allows you to map certain file extensions to "handlers":
462
+ # actions unrelated to filetype. These can be either built into the server
463
+ # or added with the Action directive (see below)
464
+ #
465
+ # To use CGI scripts outside of ScriptAliased directories:
466
+ # (You will also need to add "ExecCGI" to the "Options" directive.)
467
+ #
468
+ #AddHandler cgi-script .cgi
469
+
470
+ #
471
+ # For files that include their own HTTP headers:
472
+ #
473
+ #AddHandler send-as-is asis
474
+
475
+ #
476
+ # For server-parsed imagemap files:
477
+ #
478
+ #AddHandler imap-file map
479
+
480
+ #
481
+ # For type maps (negotiated resources):
482
+ # (This is enabled by default to allow the Apache "It Worked" page
483
+ # to be distributed in multiple languages.)
484
+ #
485
+ AddHandler type-map var
486
+
487
+ #
488
+ # Filters allow you to process content before it is sent to the client.
489
+ #
490
+ # To parse .shtml files for server-side includes (SSI):
491
+ # (You will also need to add "Includes" to the "Options" directive.)
492
+ #
493
+ AddType text/html .shtml
494
+ AddOutputFilter INCLUDES .shtml
495
+ </IfModule>
496
+
497
+ <IfModule mod_fcgid.c>
498
+ SharememPath /var/run/fcgid_shm
499
+ SocketPath /tmp/fcgidsock
500
+ </IfModule>
501
+
502
+
503
+ #
504
+ # Action lets you define media types that will execute a script whenever
505
+ # a matching file is called. This eliminates the need for repeated URL
506
+ # pathnames for oft-used CGI file processors.
507
+ # Format: Action media/type /cgi-script/location
508
+ # Format: Action handler-name /cgi-script/location
509
+ #
510
+
511
+ #
512
+ # Customizable error responses come in three flavors:
513
+ # 1) plain text 2) local redirects 3) external redirects
514
+ #
515
+ # Some examples:
516
+ #ErrorDocument 500 "The server made a boo boo."
517
+ #ErrorDocument 404 /missing.html
518
+ #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
519
+ #ErrorDocument 402 http://www.example.com/subscription_info.html
520
+ #
521
+
522
+ #
523
+ # Putting this all together, we can internationalize error responses.
524
+ #
525
+ # We use Alias to redirect any /error/HTTP_<error>.html.var response to
526
+ # our collection of by-error message multi-language collections. We use
527
+ # includes to substitute the appropriate text.
528
+ #
529
+ # You can modify the messages' appearance without changing any of the
530
+ # default HTTP_<error>.html.var files by adding the line:
531
+ #
532
+ # Alias /error/include/ "/your/include/path/"
533
+ #
534
+ # which allows you to create your own set of files by starting with the
535
+ # /usr/share/apache2/error/include/ files and copying them to /your/include/path/,
536
+ # even on a per-VirtualHost basis. The default include files will display
537
+ # your Apache version number and your ServerAdmin email address regardless
538
+ # of the setting of ServerSignature.
539
+ #
540
+ # The internationalized error documents require mod_alias, mod_include
541
+ # and mod_negotiation. To activate them, uncomment the following 30 lines.
542
+
543
+ # Alias /error/ "/usr/share/apache2/error/"
544
+ #
545
+ # <Directory "/usr/share/apache2/error">
546
+ # AllowOverride None
547
+ # Options IncludesNoExec
548
+ # AddOutputFilter Includes html
549
+ # AddHandler type-map var
550
+ # Order allow,deny
551
+ # Allow from all
552
+ # LanguagePriority en cs de es fr it nl sv pt-br ro
553
+ # ForceLanguagePriority Prefer Fallback
554
+ # </Directory>
555
+ #
556
+ # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
557
+ # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
558
+ # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
559
+ # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
560
+ # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
561
+ # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
562
+ # ErrorDocument 410 /error/HTTP_GONE.html.var
563
+ # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
564
+ # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
565
+ # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
566
+ # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
567
+ # ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
568
+ # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
569
+ # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
570
+ # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
571
+ # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
572
+ # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
573
+
574
+ <IfModule mod_setenvif.c>
575
+ #
576
+ # The following directives modify normal HTTP response behavior to
577
+ # handle known problems with browser implementations.
578
+ #
579
+ BrowserMatch "Mozilla/2" nokeepalive
580
+ BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
581
+ BrowserMatch "RealPlayer 4\.0" force-response-1.0
582
+ BrowserMatch "Java/1\.0" force-response-1.0
583
+ BrowserMatch "JDK/1\.0" force-response-1.0
584
+
585
+ #
586
+ # The following directive disables redirects on non-GET requests for
587
+ # a directory that does not include the trailing slash. This fixes a
588
+ # problem with Microsoft WebFolders which does not appropriately handle
589
+ # redirects for folders with DAV methods.
590
+ # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
591
+ #
592
+ BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
593
+ BrowserMatch "MS FrontPage" redirect-carefully
594
+ BrowserMatch "^WebDrive" redirect-carefully
595
+ BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
596
+ BrowserMatch "^gnome-vfs/1.0" redirect-carefully
597
+ BrowserMatch "^XML Spy" redirect-carefully
598
+ BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
599
+ </IfModule>
600
+
601
+ #<IfModule mod_status.c>
602
+ #
603
+ # Allow server status reports generated by mod_status,
604
+ # with the URL of http://servername/server-status
605
+ # Change the ".example.com" to match your domain to enable.
606
+ #
607
+ #<Location /server-status>
608
+ # SetHandler server-status
609
+ # Order deny,allow
610
+ # Deny from all
611
+ # Allow from .example.com
612
+ #</Location>
613
+ #</IfModule>
614
+
615
+ #<IfModule mod_info.c>
616
+ #
617
+ # Allow remote server configuration reports, with the URL of
618
+ # http://servername/server-info (requires that mod_info.c be loaded).
619
+ # Change the ".example.com" to match your domain to enable.
620
+ #
621
+ #<Location /server-info>
622
+ # SetHandler server-info
623
+ # Order deny,allow
624
+ # Deny from all
625
+ # Allow from .example.com
626
+ #</Location>
627
+ #</IfModule>
628
+
629
+ # Include the virtual host configurations:
630
+ Include <%= @node[:apache][:dir] %>/sites-enabled/
@@ -0,0 +1,45 @@
1
+ <VirtualHost *:80>
2
+ ServerAdmin <%= @node[:apache][:contact] %>
3
+
4
+ DocumentRoot /var/www/
5
+ <Directory />
6
+ Options FollowSymLinks
7
+ AllowOverride None
8
+ </Directory>
9
+ <Directory /var/www/>
10
+ Options Indexes FollowSymLinks MultiViews
11
+ AllowOverride None
12
+ Order allow,deny
13
+ allow from all
14
+ # This directive allows us to have apache2's default start page
15
+ # in /apache2-default/, but still have / go to the right place
16
+ #RedirectMatch ^/$ /apache2-default/
17
+ </Directory>
18
+
19
+ ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
20
+ <Directory "/usr/lib/cgi-bin">
21
+ AllowOverride None
22
+ Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
23
+ Order allow,deny
24
+ Allow from all
25
+ </Directory>
26
+
27
+ ErrorLog /var/log/apache2/error.log
28
+
29
+ # Possible values include: debug, info, notice, warn, error, crit,
30
+ # alert, emerg.
31
+ LogLevel warn
32
+
33
+ CustomLog /var/log/apache2/access.log combined
34
+ ServerSignature On
35
+
36
+ Alias /doc/ "/usr/share/doc/"
37
+ <Directory "/usr/share/doc/">
38
+ Options Indexes MultiViews FollowSymLinks
39
+ AllowOverride None
40
+ Order deny,allow
41
+ Deny from all
42
+ Allow from 127.0.0.0/255.0.0.0 ::1/128
43
+ </Directory>
44
+
45
+ </VirtualHost>
@@ -0,0 +1,2 @@
1
+ # Port <%= @port %>
2
+ -A FWR -p tcp -m tcp --dport <%= @port %> -j ACCEPT
@@ -0,0 +1,6 @@
1
+ #This file generated via template by Chef.
2
+ <% @apache_listen_ports.each do |port| -%>
3
+ Listen <%= port %>
4
+ NameVirtualHost *:<%= port %>
5
+
6
+ <% end -%>