Re: Virtual Hosts in "Perl" sections.

2006-09-24 Thread Fred Moyer
Krist van Besien wrote: Hello, The folllowing piece: 1 2 $VirtualHost{"0.0.0.0"} = { 3 DocumentRoot => "/home/foo/webservers/wiki.foo.net/htdocs", 4 ServerName => "wiki.foo.net", 5 }; 6 7 8 Creates a virtual host that is equivalent to the f

Re: Logging to a file

2006-09-24 Thread David Nicol
On 9/22/06, Jonathan <[EMAIL PROTECTED]> wrote: composing the info i need to log under mp is trivial i'm a bit uneasy about actually logging to a file though-- it looks like under a prefork model ( i need 2+ servers to handle this ), i'd need to lock / open / write / close / unlock the log file

Virtual Hosts in "Perl" sections.

2006-09-24 Thread Krist van Besien
Hello, The folllowing piece: 1 2 $VirtualHost{"0.0.0.0"} = { 3 DocumentRoot => "/home/foo/webservers/wiki.foo.net/htdocs", 4 ServerName => "wiki.foo.net", 5 }; 6 7 8 Creates a virtual host that is equivalent to the following code: Serve