aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_base.conf
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-01 12:44:50 +0000
committerMichael Scherer <misc@mageia.org>2011-02-01 12:44:50 +0000
commit0504e572eec2cc6e23b43c21d84efbe21b323faa (patch)
tree900ec2202e17ef5edab6dba1e64ffa541ed1d4d6 /modules/apache/templates/vhost_base.conf
parentf4788d42dda16c6bdc99c76e9969ad59f2e1bb88 (diff)
downloadpuppet-0504e572eec2cc6e23b43c21d84efbe21b323faa.tar
puppet-0504e572eec2cc6e23b43c21d84efbe21b323faa.tar.gz
puppet-0504e572eec2cc6e23b43c21d84efbe21b323faa.tar.bz2
puppet-0504e572eec2cc6e23b43c21d84efbe21b323faa.tar.xz
puppet-0504e572eec2cc6e23b43c21d84efbe21b323faa.zip
- refactoring of apache config file, to ease future deployment
Diffstat (limited to 'modules/apache/templates/vhost_base.conf')
-rw-r--r--modules/apache/templates/vhost_base.conf23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/apache/templates/vhost_base.conf b/modules/apache/templates/vhost_base.conf
new file mode 100644
index 00000000..266e7c29
--- /dev/null
+++ b/modules/apache/templates/vhost_base.conf
@@ -0,0 +1,23 @@
+<%- if use_ssl then
+ port = 443
+else
+ port = 80
+end
+-%>
+
+<VirtualHost *:<%= port %>>
+<%- if use_ssl then -%>
+ SSLEngine on
+ SSLCertificateFile /etc/ssl/apache/<%= name %>.pem
+ SSLCertificateKeyFile /etc/ssl/apache/<%= name %>.pem
+<%- end -%>
+ ServerName <%= real_vhost %>
+ DocumentRoot <%= location %>
+
+ <%= content %>
+
+ <Location />
+ Allow from all
+ </Location>
+</VirtualHost>
+