Hello,
You need to sudo gedit /etc/apache2/sites-available/default to make apache look at your web directory. mine looks like this: NameVirtualHost * <VirtualHost *> ServerAdmin webmaster@localhost
DocumentRoot /home/alistair/www/website/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /home/alistair/www/website/> Options Indexes FollowSymLinks MultiViews +Includes XBitHack on AllowOverride None Order allow,deny allow from all </Directory>
ScriptAlias /cgi-bin/ /home/alistair/www/website/cgi-bin/ <Directory "/home/alistair/www/website/cgi-bin"> AddHandler cgi-script .cgi .pl AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel debug
CustomLog /var/log/apache2/access.log combined ServerSignature On
Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory>
</VirtualHost>
You need to replace /home/alistair/.... with your own directory.
Have a look at http://httpd.apache.org/ for the manual.