i have installed scalix on a centos 64bit system. the webaccess is available but all mein other vhhosts not. i always get "HTTP 404 Not Found".
here is my configuration of the vhosts in httpd.conf
#default
<VirtualHost *:80>
ServerAdmin florianb86@web.de
DocumentRoot /var/www/html
ServerName hiob86.game-host.org
</VirtualHost>
#mail
<VirtualHost *:80>
ServerAdmin florianb86@web.de
DocumentRoot /var/opt/scalix/hl/tomcat/webapps
ServerName mail.hiob86.game-host.org
<Directory "/var/opt/scalix/hl/tomcat/webapps">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
#phpmyadmin
<VirtualHost *:80>
ServerAdmin florianb86@web.de
DocumentRoot /var/www/html/phpMyAdmin
ServerName phpmyadmin.hiob86.game-host.org
</VirtualHost>
#gallery
<VirtualHost *:80>
ServerAdmin florianb86@web.de
DocumentRoot /var/www/html/gallery/gallery2
ServerName gallery.hiob86.game-host.org
</VirtualHost>
please help
***edit***
If i use the url gallery.hiob86.game-host.org/gallery/gallery2 i can access the site.
the same with phpmyadmin.
it seems that the line DocumentRoot... brings nothing.
any ideas??