This is an example drupal installation to help you understand how your site should be deployed. When you're ready to deploy your site, be sure to run the following command as root:
a2dissite examplesite.com
And Then:
/etc/init.d/apache2 reload
Create your Database
mysql
create database your-db-name;
cat ~/.my.cnf
Create your Apache vHost
mv changeme.com your-site-name
sudo su -
cd /etc/apache2/sites-available
cp examplesite.com your-site.com
Modify the SiteName to match your URL, and modify the directory locations to reference your site
a2ensite your-site-name
/etc/init.d/apache2 reload
If you receive any errors, be sure to check that you've correctly entered the location of your site and log files.
exit
Upload your site
After you've uploaded your site, just follow the normal setup procedures to setup your drupal site.