1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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>
|