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-dev/2012-March/012834.html | 124 ++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 zarb-ml/mageia-dev/2012-March/012834.html (limited to 'zarb-ml/mageia-dev/2012-March/012834.html') diff --git a/zarb-ml/mageia-dev/2012-March/012834.html b/zarb-ml/mageia-dev/2012-March/012834.html new file mode 100644 index 000000000..103a5fce5 --- /dev/null +++ b/zarb-ml/mageia-dev/2012-March/012834.html @@ -0,0 +1,124 @@ + + + + [Mageia-dev] lighttpd and others now require apache + + + + + + + + + +

[Mageia-dev] lighttpd and others now require apache

+ Pascal Terjan + pterjan at gmail.com +
+ Thu Mar 8 16:13:03 CET 2012 +

+
+ +
On Thu, Mar 8, 2012 at 14:57, Romain d'Alverny <rdalverny at gmail.com> wrote:
+> On Thu, Mar 8, 2012 at 15:02, Guillaume Rousse <guillomovitch at gmail.com> wrote:
+>> Le 08/03/2012 14:38, Pascal Terjan a écrit :
+>>> And for /var/www/html
+>>> This should really be a server-neutral thing (with a better name for
+>>> the user, like www-data) but I never took the time to do it :(
+>>
+>> What is needed exactly by various web servers ? I really doubt anything else
+>> as apache requires apache configuration file. And if it is just a
+>> /var/www/html directory, there is no use to have a dependency for something
+>> any sysadmin is able to create himself.
+>
+> It helps when it works out of the box. A user may not be aware, at
+> first, that a /var/www/html has to be created + an index.html file put
+> in it, to see its Web server work. It's a good default behaviour
+> confirming the install succeeded and that the server works, it saves a
+> few seconds to everyone trying/doing it first.
+>
+> Now, maybe each web server package should check if this /var/www/html
+> directory exists and create it if needed (or have /var/www/apache,
+> /var/www/lighttpd, etc.)? Or should that be better handled by a
+> separate unique package?
+
+I would prefer a package providing a web user and a default webroot.
+Else we can have such shared user created in each of the packages...
+It would be annoying to have to chown the writable directories when
+switching between servers.
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ +
+More information about the Mageia-dev +mailing list
+ -- cgit v1.2.1 .75'>stats
path: root/Makefile
blob: 79744281d2dac2e59fe542ef2da96f4182e1d2cf (plain)
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
include Makefile.config

ROOTDEST = /export
STAGE2_DEST = $(ROOTDEST)/install/stage2

DIRS = tools images perl-install/install rescue

.PHONY: dirs install

install: dirs rescue install_only

dirs:
	@for n in $(DIRS); do $(MAKE) -C $$n all || exit 1 ; done

install_only:
	make -C images install ROOTDEST=$(ROOTDEST)
	make -C tools install ROOTDEST=$(ROOTDEST)
	make -C perl-install/install install ROOTDEST=$(ROOTDEST)
	make -C rescue install STAGE2_DEST=$(STAGE2_DEST)
	make -C advertising install ROOTDEST=$(ROOTDEST)

	LC_ALL=C svn info ChangeLog  | egrep '^Revision|^Last Changed Date' > $(STAGE2_DEST)/VERSION

clean:
#	force taking new rpms from repository
	rm -rf images/RPMS
	for i in $(DIRS); do make -C $$i clean; done
	find . -name "*~" -o -name ".#*" | xargs rm -f

check:
	$(MAKE) -C perl-install check