> here is an example of one of my virtual host settings that are is in
> etc/apache22/includes/virtual
# typo on the line above should read etc/apache22/includes/virtual.conf
>
> <VirtualHost *:80>
> DocumentRoot /usr/virtualwebs/my.domain.net
> ServerName www.my.domain.net
> Options Indexes
> AcceptPathInfo On
> ServerAdmin webmaster@xxxxxxxxxxxxx
> AddDefaultCharset utf-8
> ScriptAlias /mailman "/usr/local/mailman/cgi-bin"
> Alias /pipermail "/usr/local/mailman/archives/public"
> Alias /icons/ "/usr2/virtualwebs/icons/"
> </VirtualHost>
> # Now make sure apache has access to every directory it needs with an entry
> like:
> <Directory /usr/virtualwebs/my.domain.net/>
> order allow,deny
> allow from all
> </Directory>
> # repeat that for any directories pointed to by an Alia directive
>
> so a second one follows the same pattern:
> <VirtualHost *:80>
> DocumentRoot /usr/virtualwebs/my.domain2.net
> ServerName www.my.domain2.net
> Options Indexes
> AcceptPathInfo On
> ServerAdmin webmaster@xxxxxxxxxxxxxx
> AddDefaultCharset utf-8
> ScriptAlias /mailman "/usr/local/mailman/cgi-bin"
> Alias /pipermail "/usr/local/mailman/archives/public"
> Alias /icons/ "/usr2/virtualwebs/icons/"
> </VirtualHost>
> <Directory /usr/virtualwebs/my.domain2.net/>
> order allow,deny
> allow from all
> </Directory>
>
> david