How to add new website without domain name ========================================== 1) opy the configuration file from the default sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/8099.com 2) Edit the new configuration file sudo nano /etc/apache2/sites-available/8099.com directives ========== a) b) DocumentRoot /var/www/8099.com c) DirectoryIndex index.htm d) #DocumentRoot /var/www b*) Listen 80 (note: edit in "/etc/apache2/ports.conf", default 80) 3) Add the new listen port 8099 sudo nano /etc/apache2/ports.conf listen 8099 4) Enable the new VirtualHost or website sudo a2ensite 8099.com 5) restart Apache sudo /etc/init.d/apache2 restart