[Mageia-sysadm] [742] add vhost_simple, for handling simple checkout ( php, static website )
root at mageia.org
root at mageia.org
Sun Jan 9 12:15:09 CET 2011
Revision: 742
Author: misc
Date: 2011-01-09 12:15:08 +0100 (Sun, 09 Jan 2011)
Log Message:
-----------
add vhost_simple, for handling simple checkout ( php, static website )
Modified Paths:
--------------
puppet/modules/apache/manifests/init.pp
Added Paths:
-----------
puppet/modules/apache/templates/vhost_simple.conf
Modified: puppet/modules/apache/manifests/init.pp
===================================================================
--- puppet/modules/apache/manifests/init.pp 2011-01-09 11:15:07 UTC (rev 741)
+++ puppet/modules/apache/manifests/init.pp 2011-01-09 11:15:08 UTC (rev 742)
@@ -164,6 +164,19 @@
}
}
+ define vhost_simple($location) {
+ include apache::base
+ file { "$name.conf":
+ path => "/etc/httpd/conf/vhosts.d/$name.conf",
+ ensure => "present",
+ owner => root,
+ group => root,
+ mode => 644,
+ notify => Service['apache'],
+ content => template("apache/vhost_simple.conf")
+ }
+ }
+
define webapp_other($webapp_file) {
include apache::base
$webappname = $name
Added: puppet/modules/apache/templates/vhost_simple.conf
===================================================================
--- puppet/modules/apache/templates/vhost_simple.conf (rev 0)
+++ puppet/modules/apache/templates/vhost_simple.conf 2011-01-09 11:15:08 UTC (rev 742)
@@ -0,0 +1,9 @@
+<VirtualHost *:80>
+ ServerName <%= name %>
+ DocumentRoot <%= location %>
+
+ <Location />
+ Allow from all
+ </Location>
+</VirtualHost>
+
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/mageia-sysadm/attachments/20110109/9f39e0c3/attachment-0001.html>
More information about the Mageia-sysadm
mailing list