yes, i know this is way out of topic but
i made DNS record from my subdomain targetin my server ip (im not sure is this right way to do). now it's saying same thing that my domain name (error 404).
i think cause both is targeted my server ip and now apache.conf giving same folder to both.. but admin.domain.com should be targeted ispCP panel folder..
it may be that I'm doing this all wrong?!?
(sorry my bad english, im from Finland

)
that is in my /etc/apache2/sites-enabled/00_master.conf
I think this is the file that apache2.conf include.
<VirtualHost xx.xx.xx.xx:80>
ServerAdmin admin@domain.com
DocumentRoot /var/www/ispcp/gui
ServerName admin.domain.com
Alias /errors /var/www/ispcp/gui/errordocs/
ErrorDocument 401 /errors/401.html
ErrorDocument 403 /errors/403.html
ErrorDocument 404 /errors/404.html
ErrorDocument 500 /errors/500.html
ErrorDocument 503 /errors/503.html
Alias /pma /var/www/ispcp/gui/tools/pma/
Alias /webmail /var/www/ispcp/gui/tools/webmail/
Alias /ftp /var/www/ispcp/gui/tools/filemanager/
<IfModule suexec_module>
SuexecUserGroup vu2000 vu2000
</IfModule>
....