The plain copy action is easy:
At the source box command prompt, type
cd /home/virtual/site1/fst/va
r/www/html
tar -czpf web_site_files.tar.gz *
Assuming, you don't log in as root but as a user and then su to root...
scp web_site_files.tar.gz
[email protected]:
Now, at the destination box command prompt:
su - root
cd /var/www/vhosts/mydomain.c
om/httpdoc
s
tar -xzpf ~user/web_site_files.tar.g
z
chown -R apache:apache *
Keep in mind, though, that this might not work right of the bat. Your environment might need more configuration.