Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Aug 1997 15:39:10 -0700 (PDT)
From:      Dan Busarow <dan@dpcsys.com>
To:        Louis-Philippe Alain <xenub@boisfrancs.qc.ca>
Cc:        questions@FreeBSD.ORG
Subject:   re: DNS and Virtual Server
Message-ID:  <Pine.UW2.3.95.970824153416.2414C-100000@cedb>
In-Reply-To: <Pine.BSF.3.96.970824161327.280A-100000@liloo.boisfrancs.qc.ca>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 24 Aug 1997, Louis-Philippe Alain wrote:
> <VirtualHost www.vetement257.qc.ca>
> ServerAdmin xenub@boisfrancs.qc.ca
> DocumentRoot /usr/home/xenub
> ServerName www.vetement257.qc.ca
> ErrorLog /var/log/www.vetement257.error_log
> TransferLog /var/log/www.vetement257.trans_log
> </VirtualHost>

Looks good.  www.vetement257.qc.ca isn't in the DNS, at least I can't
resolve it.  But you must be running a local name server that knows
about it or Apache wouldn't run at all.

Make sure that BindAddress is commented out in httpd.conf.

> be). And yes I restarted apache after the change in httpd.conf with the
> command killall -HUP httpd. If you still need more infos ask me! :)

I guess this should work but the "correct" way is

kill -1 `cat /var/log/httpd.pid`
			  ^-- based on your log files above

which sends the parent process a SIGHUP.  The parent then kills its
children and restarts them after reading the conf files.  I don't 
know if killing the children directly could screw this up or not.
It does look like apache hasn't reread the conf files.

Dan
-- 
 Dan Busarow                                                  714 443 4172
 DPC Systems / Beach.Net                                    dan@dpcsys.com
 Dana Point, California  83 09 EF 59 E0 11 89 B4   8D 09 DB FD E1 DD 0C 82




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.UW2.3.95.970824153416.2414C-100000>