diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/2011-January/001824.html')
-rw-r--r-- | zarb-ml/mageia-sysadm/2011-January/001824.html | 120 |
1 files changed, 120 insertions, 0 deletions
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 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-sysadm] [742] add vhost_simple, for handling simple checkout ( php, static website ) + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B742%5D%20add%20vhost_simple%2C%0A%20for%20handling%20simple%20checkout%20%28%20php%2C%20static%20website%20%20%29&In-Reply-To=%3C20110109111509.363AC41E37%40valstar.mageia.org%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="001823.html"> + <LINK REL="Next" HREF="001825.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-sysadm] [742] add vhost_simple, for handling simple checkout ( php, static website )</H1> + <B>root at mageia.org</B> + <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B742%5D%20add%20vhost_simple%2C%0A%20for%20handling%20simple%20checkout%20%28%20php%2C%20static%20website%20%20%29&In-Reply-To=%3C20110109111509.363AC41E37%40valstar.mageia.org%3E" + TITLE="[Mageia-sysadm] [742] add vhost_simple, for handling simple checkout ( php, static website )">root at mageia.org + </A><BR> + <I>Sun Jan 9 12:15:09 CET 2011</I> + <P><UL> + <LI>Previous message: <A HREF="001823.html">[Mageia-sysadm] [741] add newer path for module searching : +</A></li> + <LI>Next message: <A HREF="001825.html">[Mageia-sysadm] [743] move lists to a subdirectory deployment ( to separate them from pure module ) +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#1824">[ date ]</a> + <a href="thread.html#1824">[ thread ]</a> + <a href="subject.html#1824">[ subject ]</a> + <a href="author.html#1824">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>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> +</PRE> + + + + + + + + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="001823.html">[Mageia-sysadm] [741] add newer path for module searching : +</A></li> + <LI>Next message: <A HREF="001825.html">[Mageia-sysadm] [743] move lists to a subdirectory deployment ( to separate them from pure module ) +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#1824">[ date ]</a> + <a href="thread.html#1824">[ thread ]</a> + <a href="subject.html#1824">[ subject ]</a> + <a href="author.html#1824">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm +mailing list</a><br> +</body></html> |