summaryrefslogtreecommitdiff
path: root/puppet/modules/site_static/manifests/init.pp
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-05-30 14:52:26 -0700
committerelijah <elijah@riseup.net>2014-06-02 12:03:01 -0700
commit4e3d168d103fea6476694997275c4df4821535f3 (patch)
tree34ffa9b55ceaecf776074f3cae042efe9af845ad /puppet/modules/site_static/manifests/init.pp
parent55327fd72621e5c678e5f9ba923bc348ca840463 (diff)
static site: added rack support, added custom apache config
Diffstat (limited to 'puppet/modules/site_static/manifests/init.pp')
-rw-r--r--puppet/modules/site_static/manifests/init.pp19
1 files changed, 17 insertions, 2 deletions
diff --git a/puppet/modules/site_static/manifests/init.pp b/puppet/modules/site_static/manifests/init.pp
index 6b2cc1f3..6e347d35 100644
--- a/puppet/modules/site_static/manifests/init.pp
+++ b/puppet/modules/site_static/manifests/init.pp
@@ -11,8 +11,8 @@ class site_static {
file { '/srv/leap/provider.json':
content => $bootstrap['provider_json'],
owner => 'www-data',
- group => 'www-data',
- mode => '0444';
+ group => 'www-data',
+ mode => '0444';
}
# It is important to always touch provider.json: the client needs to check x-min-client-version header,
# but this is only sent when the file has been modified (otherwise 304 is sent by apache). The problem
@@ -22,6 +22,21 @@ class site_static {
}
}
+ class { '::apache': no_default_site => true, ssl => true }
+ include site_apache::module::headers
+ include site_apache::module::alias
+ include site_apache::module::expires
+ include site_apache::module::removeip
+ include site_apache::module::rewrite
+
+ if (member($formats, 'rack')) {
+ include site_apt::preferences::passenger
+ class { 'passenger':
+ use_munin => false,
+ require => Class['site_apt::preferences::passenger']
+ }
+ }
+
if (member($formats, 'amber')) {
include site_config::ruby::dev
rubygems::gem{'amber-0.3.0': }