On Wed, 7 Jul 1999 [EMAIL PROTECTED] wrote:
> Hi,
>
> I've just finished installing mandrake, and need to do some
> configuration.
>
> Can anyone tell me how to set up apache so that I can have my
> virtual server mirrored locally?
(cd /home/httpd/html/ && wget -m http://some.host.com)
will yeild http://localhost/some.host.com/
depending on your setup you could also do true vhosting of it
(cd /home/httpd/ && wget -m http://some.host.com)
then in /etc/httpd/conf/httpd.conf
--
<VirtualHost vhost.you.yourdomain.com>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/httpd/html/some.host.com
ServerName vhost.you.yourdomain.com
ErrorLog logs/vhost.you.yourdomain.com-error_log
TransferLog logs/vhost.you.yourdomain.com-access_log
</VirtualHost>
--
> Are there any good files explaining how to set up e-mail
> distribution? I'd like to download e-mail from a variety of POP boxes
> and divide on x-smtp-envelope: to different users (and some
> perhaps to launch perl scripts).
fetchmail and procmail are your tools, manpages should cover what you
need.
> James.
>