From 1be510f9529cb082f802408b472a77d074b394c0 Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Sun, 14 Apr 2013 13:46:12 +0000 Subject: Add zarb MLs html archives --- zarb-ml/mageia-sysadm/2011-January/001824.html | 120 +++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 zarb-ml/mageia-sysadm/2011-January/001824.html (limited to 'zarb-ml/mageia-sysadm/2011-January/001824.html') diff --git a/zarb-ml/mageia-sysadm/2011-January/001824.html b/zarb-ml/mageia-sysadm/2011-January/001824.html new file mode 100644 index 000000000..d964bd716 --- /dev/null +++ b/zarb-ml/mageia-sysadm/2011-January/001824.html @@ -0,0 +1,120 @@ + + + + [Mageia-sysadm] [742] add vhost_simple, for handling simple checkout ( php, static website ) + + + + + + + + + +

[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
+ -- cgit v1.2.1