aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apache/manifests/init.pp')
-rw-r--r--modules/apache/manifests/init.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index 9bbeaa6a..d8429dcc 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -37,6 +37,17 @@ class apache {
require => Package["apache-conf"],
content => template("apache/00_default_vhosts.conf")
}
+
+ file { "01_default_ssl_vhost.conf"
+ path => '/etc/httpd/conf/vhosts.d/01_default_ssl_vhost.conf',
+ ensure => "present",
+ owner => root,
+ group => root,
+ mode => 644,
+ notify => Service['apache'],
+ require => Package["apache-conf"],
+ content => template("apache/01_default_ssl_vhost.conf")
+ }
}
class mod_php inherits base {