Apache Error
Posted: Fri Aug 27, 2004 10:30 pm
I have only editted the config file lately in apache and all of a sudden its got this error. Anyone know how to fix it? I have included the only part I edit in my httpd.conf
Heres the error:

Code: Select all
# WEB DUMMY DECLARATIONS
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.webdummy.net
DocumentRoot "C:/AppServ/www/webdummy/www"
</VirtualHost>
<VirtualHost *:80>
ServerName webdummy.net
DocumentRoot "C:/AppServ/www/webdummy/www"
</VirtualHost>
# GENERATION-X DECLARATIONS
<VirtualHost *:80>
ServerName generation-x.uni.cc
DocumentRoot "C:/AppServ/www/generation-x/www"
</VirtualHost>
# renegade DECLARATIONS
<VirtualHost *:80>
ServerName renegade.webdummy.net
DocumentRoot "C:/AppServ/www/renegade/"
</VirtualHost>
# IP DECLARATIONS
<VirtualHost *:80>
ServerName 192.168.0.104
DocumentRoot "C:/AppServ/www"
</VirtualHost>
<VirtualHost *:80>
ServerName 24.72.3.251
DocumentRoot "C:/AppServ/www"
</VirtualHost>
<Directory "C:/AppServ/www/webdummy/www/">
Options All
AllowOverride None
Order deny,allow
Allow from all
</Directory>
# ALLOWING LOCALHOST
<Directory />
Options FollowSymLinks ExecCGI Indexes
AllowOverride None
Order deny,allow
Deny from all
</Directory>
# BANNING ALL TRAFFIC. ALLOUD SPECIFICALLY NEXT
<Directory "C:/AppServ/www">
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order deny,allow
Deny from all
</Directory>
<Directory "c:/AppServ/www">
# I removed all default comments for clarity
# This is the default folder when you'll go http://localhost
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
# GIVING ACCESS TO USERS BROWSING SPECIFIC DOMAINS
<Directory "C:/AppServ/www/webdummy/www/">
Options All
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<Directory "C:/AppServ/www/PHPMyAdmin/">
Options All
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<Directory "C:/AppServ/www/generation-x/www/">
Options All
AllowOverride None
Order deny,allow
Allow from all
</Directory>
<Directory "C:/AppServ/www/Renegade">
Options All
AllowOverride None
Order deny,allow
Allow from all
</Directory>
# BANNING ALL LOGS TO LOCALHOST
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
# And
<Location /server-info>
SetHandler server-info
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>