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

Added Paths

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>
+