Craig Rosenblum cried from the depths of the abyss... > Hosts file must have been modified by webmin. > I just don't get why I can't access http://localhost:8082 > > Here again are the directives: > > DocumentRoot /home/craig/www/wbm > ServerAdmin webmaster at localhost > <Directory /> > Options FollowSymLinks > AllowOverride None > </Directory> > ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ > <Directory "/usr/lib/cgi-bin"> > AllowOverride None > Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch > Order allow,deny > Allow from all > </Directory> > ErrorLog /var/log/apache2/wbm_error.log > LogLevel warn > CustomLog /var/log/apache2/access.log "combined" > 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 Until you get this working get rid of the Allow statement, and reverse the Order. ie: Order allow,deny Allow from all > </Directory> This might be an issue too. Why declare this, and then again in the virthosts config? > <Directory /home/craig/www/wbm/> > Options Indexes FollowSymLinks MultiViews > AllowOverride None > Order allow,deny > allow from all > </Directory> >